1. 05 4月, 2019 5 次提交
    • D
      Disable sanity assertion for itempointer offsetnumber · e74fc536
      Daniel Gustafsson 提交于
      Commit 99360f54 extended the offset
      numbers in the GIN posting list to 16 bits over upstream who use
      11 bits. This however means that the assertion around ip_posid is
      no longer valid as it's always true, causing a compiler warning:
      
      ginpostinglist.c:89:24: warning: result of comparison of constant
                                       65536 with expression of type
      								 'OffsetNumber' (aka 'unsigned short')
      								 is always true
      [-Wtautological-constant-out-of-range-compare]
      Assert(iptr->ip_posid < (1 << MaxHeapTuplesPerPageBits));
      ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../../../src/include/c.h:784:10: note: expanded from macro 'Assert'
      Trap(!(condition), "FailedAssertion")
      ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ../../../../src/include/c.h:766:28: note: expanded from macro 'Trap'
      if ((assert_enabled) && (condition))
      ^~~~~~~~~
      1 warning generated.
      
      Fix by commenting out the assertion with preprocessor blocks in an
      attempt to make future merge conflicts easier to resolve.
      
      A previous version of this patch was reviewed by Adam Berlin.
      e74fc536
    • A
      Lower the log level of the fts probe while unpacking response. · 0348582e
      Adam Berlin 提交于
      The level of TERSE or greater was set during development, we can lower
      this to DEBUG now that this feature has stablized.
      0348582e
    • A
      Remove addition of gpfdist_ssl test. · 05107512
      Adam Berlin 提交于
      It fails and appears to not be maintained when:
      
      --enable-gpfdist and --with-openssl are configured.
      05107512
    • D
      gpinitsystem: gpinitsystem_help reflects flag changes · ee7b5905
      David Krieger 提交于
      (cherry picked from commit 813528e7)
      ee7b5905
    • J
      gpinitsystem: Change flags for mirroring and standby datadir · 2710bc21
      Jamie McAtamney 提交于
      Because the gpinitstandby flag for passing in a standby master data directory
      was changed from -F to -S, this commit changes -F to -S in gpinitsystem to
      match.
      
      -S was already in use for specifying that the cluster should have its mirrors
      set up in spread configuration, so that flag is changed to --mirror-mode, which
      accepts the mirror mode ('group' or 'spread') as an argument.
      Co-authored-by: NJamie McAtamney <jmcatamney@pivotal.io>
      Co-authored-by: NMark Sliva <msliva@pivotal.io>
      (cherry picked from commit 6fa3bce8)
      2710bc21
  2. 04 4月, 2019 13 次提交
  3. 03 4月, 2019 22 次提交