1. 31 7月, 2018 6 次提交
  2. 30 7月, 2018 2 次提交
  3. 27 7月, 2018 3 次提交
  4. 26 7月, 2018 25 次提交
  5. 25 7月, 2018 4 次提交
    • J
      pg_dump: work around hang during external partition exchange · c4a7b251
      Jacob Champion 提交于
      The new optimized query introduced in commit 2ea6aec3 isn't as optimized
      as we'd like if enable_nestloop is on -- released versions of GPDB craft
      a plan that runs in polynomial time, and the dump grinds to a halt.
      
      Disable enable_nestloop temporarily as a workaround. This code may need
      to be somewhat rewritten to deal with external subpartition leaves
      anyway, in which case we may be able to get rid of some of the
      problematic JOINs.
      Co-authored-by: NJamie McAtamney <jmcatamney@pivotal.io>
      c4a7b251
    • E
      Update ORCA version in config error string · 545f592f
      Ekta Khanna 提交于
      545f592f
    • L
      docs - fix some pivnet links (#5330) · 74b03b93
      Lisa Owen 提交于
      * docs - fix some pivnet links
      
      * add missing space
      74b03b93
    • J
      Fix uao_crash_compaction_column isolation2 test · 3265e270
      Jimmy Yih 提交于
      The AO VACUUM on crash_before_cleanup_phase table was supposed to skip
      AO VACUUM drop phase because session 3 above it had acquired an
      AccessShareLock. However, the VACUUM is executed in background and the
      next command ends session 3's transaction and releases the
      AccessShareLock. This creates a race condition where AO VACUUM drop
      phase is not skipped when session 3's transaction ends too quickly. We
      fix the issue by ending session 3's transaction only after the VACUUM
      has hit the fault injector that tells us it is about to do its cleanup
      phase.
      Co-authored-by: NDavid Kimura <dkimura@pivotal.io>
      3265e270