1. 02 8月, 2017 7 次提交
  2. 01 8月, 2017 7 次提交
  3. 31 7月, 2017 6 次提交
  4. 29 7月, 2017 6 次提交
  5. 28 7月, 2017 6 次提交
  6. 27 7月, 2017 8 次提交
    • K
      Ensure ccp_destroy on debug_sleep · c36f83cb
      Kris Macoskey 提交于
      This will allow a user to cancel debug_sleep and be ensured the
      ccp_destroy will still cleanup any created clusters.
      c36f83cb
    • A
      Use xl_heaptid_set() in heap_update_internal. · f1d1d55b
      Ashwin Agrawal 提交于
      Commit d50f429c added xlog lock record, but
      missed to tune into for Greenplum which is to add persistent table
      information. Hence caused failure during recovery with FATAL message "xlog
      record with zero persistenTID". Using xl_heaptid_set() which calls
      `RelationGetPTInfo()` making sure PT info is populated for xlog record.
      f1d1d55b
    • P
      Fix flaky 'insufficient memory reserved' issue in pipeline · a7cce539
      Pengzhou Tang 提交于
      The 'insufficient memory reserved' issue existed for a long time, the
      root cause is the default statement_mem (125MB) is not enough for
      queries using by gpcheckcat script when regression database is huge.
      
      This commit add STATEMENT_MEM in demo_cluster.sh to initialize gpdb
      with required statement_mem and set statement_mem to 225MB in common.bash
      a7cce539
    • A
      Log gpload threads' terminating · 4b71d480
      Adam Lee 提交于
      It's useful and important for debugging.
      4b71d480
    • A
      Fix error in schedule file · 138141f8
      Asim R P 提交于
      138141f8
    • A
      Move dtm test to pg_regress from its own contrib module · c10e75fd
      Asim R P 提交于
      The gp_inject_fault() function is now available in pg_regress so a contrib
      module is not required.  The test was not being run, it trips an assertion.  So
      it is not added to greenplum_schedule.
      c10e75fd
    • A
      Update fsync test to use SQL UDF to inject faults · 9bd14bd3
      Asim R P 提交于
      9bd14bd3
    • A
      Make SQL based fault injection function available to all tests. · b23680d6
      Asim R P 提交于
      The function gp_inject_fault() was defined in a test specific contrib module
      (src/test/dtm).  It is moved to a dedicated contrib module gp_inject_fault.
      All tests can now make use of it.  Two pg_regress tests (dispatch and cursor)
      are modified to demonstrate the usage.  The function is modified so that it can
      inject fault in any segment, specified by dbid.  No more invoking
      gpfaultinjector python script from SQL files.
      
      The new module is integrated into top level build so that it is included in
      make and make install.
      b23680d6