1. 12 8月, 2019 8 次提交
  2. 10 8月, 2019 3 次提交
  3. 09 8月, 2019 1 次提交
  4. 08 8月, 2019 2 次提交
    • A
      Ensure the current probe does not cause flake · 38dd2da3
      Adam Berlin 提交于
      Wait until we've inserted the fts_probe skip fault, AND we have
      observed the fault being hit. This ensures that we've completed the
      in-progress fts probe before continuing on with a test.
      
      Previously, if we don't wait and our test continues forward to inject
      a panic, then then in-progress fts probe would do its job and promote
      the mirror.
      
      We lower the minimum allowed gp_fts_probe_interval to 1 second, which
      allows us to configure the interval to one second during our tests and
      speeds up the tests significantly.
      Reported-by: NAsim R P <apraveen@pivotal.io>
      38dd2da3
    • A
      Make sure externalgettup_custom() doesn't reach an unexpected state · 9b067ff0
      Adam Lee 提交于
      pstate->raw_buf_len should never be less than zero because it's the
      length of unprocessed data in externalgettup_custom(). Add an assert to
      make sure this.
      9b067ff0
  5. 07 8月, 2019 4 次提交
  6. 06 8月, 2019 4 次提交
  7. 05 8月, 2019 4 次提交
    • A
      Fix more flakey gp_tablespace_with_faults tests. · fa64cc90
      Adam Berlin 提交于
      The drop tablespace tests that introduce panics were not disabling
      fts, which is a source of flakey tests.
      
      Introduce a disable_fts() function that we can call before each
      test. The fault reset at the end of each test will reenable fts for
      the next test.
      fa64cc90
    • D
      Assorted gpMgmt/bin Makefile fixups · 9f707e1e
      Daniel Gustafsson 提交于
      The tree I was working off clearly had stale files, which led me to
      include two utils which were removed some time ago: gpcheckutil.py
      and gpcheck.py. Remove these two from their respective Makefiles.
      
      Also fix a Bash error in the Stream symlink test, the logoical AND
      requires [[ .. ]]; rather than [ .. ];.
      
      Both of these spotted while repeatedly running make install with
      trees in various states.
      9f707e1e
    • W
      Fix `Explain Analyze` crash · 18f904a7
      Weinan WANG 提交于
      We have a kind of query that its InitPlan execute in ExecutorStart.
      If Explain Analyze this kind of query, as well as, some memory or disk
      information requires to collect in the main plan, the QD will crash.
      Since queryDesc->showstatctx->stats_gathered is assigned to true
      in ExecSetParamPlan function before ExecutorRun, So we only gather
      Initplan metrics and left other slices information over. Segment fault when
      some execution node print out metrics message.
      
      To fix this problem, variable stats_gathered only be assigned after slice 0
      metrics information collection.
      
      reproduce process:
      
      create table t(a int);
      explain analyze select a
      from (
      	select a
      	from t
      	where a > (
      		select avg(a)
      		from t
      	)
      ) as foo
      order by a
      limit 1
      fix issue:#6951
      18f904a7
    • T
      Fix typo in Docker documentation · 83eddecb
      The Alchemist 提交于
      Reviewed-by: NDaniel Gustafsson <dgustafsson@pivotal.io>
      83eddecb
  8. 03 8月, 2019 7 次提交
  9. 02 8月, 2019 7 次提交