1. 05 4月, 2019 8 次提交
    • J
      UtilsTestCase: improve test reporting for flake · 0fe07f49
      Jacob Champion 提交于
      test_RemoteOperation_logger_debug() has been flaking out on the CI
      pipeline, and there's no indication of what is going wrong. Replace the
      assertTrue() call, which gives no indication of the difference between
      actual and expected, with mock.assert_has_calls(), which will tell us
      exactly what the calls were in case of failure.
      
      It's possible that this will fix the flake entirely. The previous test
      implementation depended on logger.debug() to be called *first* with our
      expected output, but given the poor isolation of our global logger
      system, it's entirely possible that some other code occasionally calls
      debug(). (That this is an issue at all indicates that this isn't really
      a unit test, but that's not something to tackle here.) assert_has_calls()
      doesn't mind how many other calls happen as long as the one we're
      looking for is eventually made, and I think that matches the intent of
      the test better anyway.
      
      Backport to 6X_STABLE.
      0fe07f49
    • D
      Refactor old bugbuster metadata_track suite · 2bf45876
      Daniel Gustafsson 提交于
      The metadata_track suite was originally part of cdbfast, dating back
      around 10-11 years. It was later moved into bugbuster around six years
      ago, already then with doubts as to what it actually did. After the
      open sourcing we scrapped bugbuster, moving anything worthwhile (or
      just not analyzed for usefulness yet) into the normal regress schedule
      which is where metadata_track remained till now. This all according to
      memory and the old proprietary issue tracker.
      
      Looking at metadata_track, it's entirely duplicative only issuing
      lots of DDL already tested elsewhere without verifying the results,
      most likely since it was originally testing the metadata tracking
      of the operations. Since the latter part is no longer happening,
      move parts of the test into the existing pg_stat_last_operation
      test and remove the rest, as the remaining value of this quite slow
      test (spending ~10-12 minutes serially in the pipeline) is highly
      debatable.
      
      The existing pg_stat_last_operation was, and I quote, "underwhelming"
      so most of it is replaced herein. There is still work to be done in
      order to boost metadata tracking test coverage, but this is at least
      a start.
      
      Reviewed-by: Jimmy Yih
      2bf45876
    • L
      Add unzip module to ubuntu docker image · e0004aa6
      Lav Jain 提交于
      e0004aa6
    • L
      Create a public dockerfile for compiling greenplum on ubuntu (#7330) · 7e15eab9
      Lav Jain 提交于
      * Create a public dockerfile for compiling gpdb on ubuntu
      * Create directory /usr/local/greenplum-db-devel for installing greenplum
      * Move current ubuntu files to ubuntu16_ppa. Update readme
      7e15eab9
    • C
      docs - remove ALTER SYSTEM reference page from docs (#7374) · cc508e16
      Chuck Litzell 提交于
      * docs - remove ALTER SYSTEM reference
      
      * Restore source for ALTER SYSTEM ref, but leave out of maps.
      
      * Add ALTER SYSTEM to list of unsupported PostgreSQL features
      cc508e16
    • C
      Docs - removes replication port references (#7368) · ea2eecc8
      Chuck Litzell 提交于
      * Docs - removes replication port references
      
      Also replaces gpstate -p command output with more recent version
      
      * add missing line break to example
      ea2eecc8
    • B
      df5c6596
    • A
      New server master ci · a7a2a60f
      Adam Berlin 提交于
      a7a2a60f
  2. 04 4月, 2019 15 次提交
  3. 03 4月, 2019 17 次提交