1. 31 7月, 2019 7 次提交
  2. 30 7月, 2019 5 次提交
  3. 29 7月, 2019 5 次提交
    • D
      Add two more duplicates to mailmap · 188b2801
      Daniel Gustafsson 提交于
      Fixing a small bug in my regexp searching for duplicates yielded two
      additional hits. Fix by adding to the mailmap file.
      188b2801
    • D
      Fix duplicate function prototype · f722631e
      Daniel Gustafsson 提交于
      It seems that the duplicate prototype snuck in during the 8.4 merge,
      which should've been mostly a noop as I had synced pgcrypto with 8.4
      in 16d26ee9. I had however placed the prototype on the wrong line
      and so git merge was able to cleanly place the protype a few lines
      down, creating a duplicate.
      f722631e
    • D
      Remove unused string substitutions · 57dfe4d2
      Daniel Gustafsson 提交于
      The gpstringsubs program replaces tokens in input .source test files
      when creating output .sql/.out files for pg_regress. There were no
      more callsites for the gp_glob_connect token however so remove that,
      and also remove tests for gpwhich_<binary> tokens which aren't in
      use in tests and thus might start failing randomly, which is exactly
      what happened in another patch where Perl programs were no longer
      incorrectly installed in PATH. Without this, removing the Perl test
      apps from PATH results in errors like this:
      
      	which: no get_ereport.pl in ( .. )
      Reviewed-by: NHeikki Linnakangas <hlinnakangas@pivotal.io>
      57dfe4d2
    • X
      Disbale test cases of gpfdist_ssl · a42f430b
      Xiaoran Wang 提交于
      The test cases of gpfdist_ssl sometimes
      fail on pipeline. We don't know the root
      cause yet. So just disable them. And we will
      enable them after fixing.
      a42f430b
    • C
      Fix quirk of isolation2 test (#8245) · 61325627
      Chen Mulong 提交于
      * Fix quirk of isolation2 test
      
      - Fix the line continuation behaviour and document
      Instead of matching "; *$" to detect the end of a sql end, the original
      code was using ";$". This creates a totally different output for tests
      like:
      a)
      SELECT * FROM t1;
      SELECT * FROM t2;
      b)
      SELECT * FROM t1;<space>
      SELECT * FROM t2;
      For a), two SELECT statements will be sent separately.
      For b), they will be sent together as
              "SELECT * FROM t1; SELECT * FROM t2;"
      
      Spaces are playing too much magic here, some of them could be a bug in
      the test itself. For example, the oom_query test should NOT pass since
      it misses error output in the expected.
      
      This change unifies the behaviours by matching with "; *$". So if a line
      is end with ';', no matter spaces follows it or not, the statement will
      be sent at once.
      
      - Document the known issue of multi SQL in one line.
      
      This issue was found during debugging pipeline failure of #8211
      Authored-by: NChen Mulong <muchen@pivotal.io>
      61325627
  4. 27 7月, 2019 4 次提交
  5. 26 7月, 2019 14 次提交
  6. 25 7月, 2019 5 次提交