1. 30 9月, 2017 6 次提交
  2. 29 9月, 2017 15 次提交
  3. 28 9月, 2017 13 次提交
  4. 27 9月, 2017 6 次提交
    • T
      Refers gpdb readme to orca readme for installation · d9f79353
      Todd Sedano 提交于
      - instead of trying to keep GPDB readme in sync with GPORCA readme, just refer to it
      d9f79353
    • T
      Updates conan readme for orca · 99b83339
      Todd Sedano 提交于
      - fixes cd path
      - removes macOS warning that is not currently an issue
      - treats comment like other readme comments
      99b83339
    • A
      Fix warnings for make_motion_gather_to_*(). · 8425f908
      Ashwin Agrawal 提交于
      After 7e268107 started seeing warnings like
      ------------------
      cdbgroup.c:1478:68: warning: expression which evaluates to zero treated as a null pointer constant of type 'List *' (aka 'struct List *') [-Wnon-literal-null-conversion]
                      result_plan = (Plan*)make_motion_gather_to_QE(root, result_plan, false);
                                                                                       ^~~~~
      ------------------
      8425f908
    • A
      Fix compiler warnings for ext_alloc.c. · f7748ed5
      Ashwin Agrawal 提交于
      After commit 1822c826 started seeing bunch of
      warnings like
      -------------------------------------------
      memaccounting.c:247:1: warning: no previous prototype for function 'MemoryAccounting_DeclareDone' [-Wmissing-prototypes]
      MemoryAccounting_DeclareDone()
      ^
      ../../../../src/include/utils/memaccounting.h:238:1: note: this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function
      MemoryAccounting_DeclareDone();
      ^
                                   void
      memaccounting.c:263:1: warning: no previous prototype for function 'MemoryAccounting_RequestQuotaIncrease' [-Wmissing-prototypes]
      MemoryAccounting_RequestQuotaIncrease()
      ^
      ../../../../src/include/utils/memaccounting.h:241:1: note: this declaration is not a prototype; add 'void' to make it a prototype for a zero-parameter function
      MemoryAccounting_RequestQuotaIncrease();
      ^
                                            void
      2 warnings generated.
      ext_alloc.c:35:1: warning: no previous prototype for function 'Ext_OptimizerAlloc' [-Wmissing-prototypes]
      Ext_OptimizerAlloc(size_t size)
      ^
      ext_alloc.c:50:17: warning: unused variable 'account' [-Wunused-variable]
              MemoryAccount *account = MemoryAccounting_ConvertIdToAccount(ActiveMemoryAccountId);
                             ^
      ext_alloc.c:48:1: warning: no previous prototype for function 'Ext_OptimizerFree' [-Wmissing-prototypes]
      Ext_OptimizerFree(void *ptr)
      ^
      ext_alloc.c:59:1: warning: no previous prototype for function 'GetOptimizerOutstandingMemoryBalance' [-Wmissing-prototypes]
      GetOptimizerOutstandingMemoryBalance()
      ^
      -------------------------------------------
      f7748ed5
    • A
      Fix gp_pgdatabase__ function by including walrep state 'n'. · 49970964
      Ashwin Agrawal 提交于
      As part of commit efed2fcc new walrep state was
      added 'n' (not-in-sync). The toolkit function gp_pgdatabase__() needs to be
      modified as well to check for that state.
      
      Original code not using #defines but direct characters like 's', 'c' makes it
      very tricky find stuff in code. Hopefully, future chnages would be easy to spot
      and make.
      49970964
    • X
      Detach resource group slot on segment · 6f940543
      xiong-gang 提交于
      QE detach resource group slot at the end of transaction, the
      last QE of the slot release the slot, and release the overused
      memory if resource group config has been changed.
      6f940543