1. 18 4月, 2019 5 次提交
  2. 17 4月, 2019 5 次提交
    • A
      Zero out compression buffer for AO and CO tables. · 63d7dc63
      Ashwin Agrawal 提交于
      This is done to zero out the padding bytes and hence have consistent compression
      ratios. Plus, zero bytes usually compress better.
      
      Suggested by Heikki Linnakangas.
      63d7dc63
    • P
      Invalidate relcache for pg_appendonly change. (#7437) · b88dd5c4
      Paul Guo 提交于
      In Greenplum, data structure RelationData includes the related pg_appendonly
      row for an ao table, when pg_appendonly changes for that ao table, we should
      invalidate the relcache for it also to prevent possible inconsistency.
      
      I can not find a real case to hit this after some tries, but this is an issue
      we could hit in theory.
      
      Reviewed-by: Hubert Zhang
      Reviewed-by: Asim R P
      Reviewed-by: Jimmy Yih
      b88dd5c4
    • D
      Remove AA test-section from prod pipeline · 44bb0d75
      Domino Valdano 提交于
      Currently, gpdb pipeline is fetching gpdb7 in master
      pipeline but madlib hasn't supported gpdb7 yet.  We
      are temporarily removing this section to unblock other
      teams.
      Co-authored-by: NJingyi Mei <jmei@pivotal.io>
      44bb0d75
    • D
      Fix gprecoverseg crash · d80501fa
      David Kimura 提交于
      Issue is encountered because XLogReaderState does not make any
      guarantees to preserve the XLogRecord returned between calls to
      ReadRecord. In this particular scenario we read the checkpoint and redo
      records from the backup label. After reading the latter record we have
      no guarantees that the former record is still pointing to unchanged
      memory.
      d80501fa
    • L
      docs - add optional procedure to cfg pxf host/port (#7463) · 3b82f326
      Lisa Owen 提交于
      * docs - add optional procedure to cfg pxf host/port
      
      * some edits requested by david
      3b82f326
  3. 16 4月, 2019 4 次提交
  4. 15 4月, 2019 4 次提交
  5. 13 4月, 2019 4 次提交
  6. 12 4月, 2019 4 次提交
  7. 11 4月, 2019 10 次提交
  8. 10 4月, 2019 4 次提交
    • A
      Print pg_regress failure diffs using fgets. · 99e54168
      Adam Berlin 提交于
      99e54168
    • D
      Add missing tests and infra for tablefunc · 7cf30401
      Daniel Gustafsson 提交于
      The tablefunc contrib module lacked the upstream Makefile and test-
      data. Re-add the upstream files and also add an variable output rule
      to the regress init_file to make it build and test green.
      
      The extra REGRESS_OPTS flag added to the Makefile can be removed
      once we can add a single init_file handling for all PGXS modules,
      but the pipeline is currently not supporting that.
      
      Reviewed-by: Hubert Zhang
      7cf30401
    • D
      fix pg_trgm testcases for Greenplum · 9d914961
      Daniel Gustafsson 提交于
      Update the pg_trgm testcase to match for expected Greenplum explain
      plans in order to make it test green. This creates a diff from the
      upstream expected file, but it's hard to avoid for plan tests (not
      being able to test it at all, or have a duplicated expected file
      seems like worse ideas).
      
      The extra REGRESS_OPTS flag added to the Makefile can be removed
      once we can add a single init_file handling for all PGXS modules,
      but the pipeline is currently not supporting that.
      
      Reviewed-by: Hubert Zhang
      9d914961
    • W
      Fdw support MPP Analyze (#7303) · 1f58c173
      Weinan WANG 提交于
      * Fdw support MPP Analyze
      
      * keep original FDW upstream API and use RelationIsForeign to recognize FDW table
      
      * declare a function "GetRelationSize" for FDW MPP calculate table size
      1f58c173