1. 13 7月, 2018 1 次提交
  2. 12 7月, 2018 1 次提交
    • R
      Fix invalid reference to relcache entries. · 234150b7
      Richard Guo 提交于
      Fix invalid reference to relcache entries.
      
      After a relation is closed, the relcache entry
      might be freed if its refcount goes to zero and we
      should avoid further reference to it.
      
      This is a fix to already existing bug and current
      tests can cover the code changes here. So there is
      no need to add new test case.
      234150b7
  3. 18 1月, 2018 1 次提交
  4. 13 1月, 2018 1 次提交
    • H
      Remove remnants of persistent tables. · 334476ad
      Heikki Linnakangas 提交于
      They were not kept up-to-date anymore anyway. Remove the actual tables.
      
      There are still a few references to these tables in the management tools.
      AFAICS they're in tests, and I was hesitent to remove them just yet, in
      case we're going to use the existing tests as a guide when writing new
      tests.
      334476ad
  5. 14 11月, 2017 1 次提交
  6. 10 10月, 2017 2 次提交
  7. 01 9月, 2017 1 次提交
  8. 09 8月, 2017 2 次提交
  9. 24 11月, 2016 2 次提交
    • D
      Clean up style and formatting · 0f2ba044
      Daniel Gustafsson 提交于
      This fixes up whitespace and formatting issues in the code touched
      by the last new commits. Separated into a single commit for easier
      diff reading of the actual code changes.
      0f2ba044
    • D
      Guard against possible NULL pointer dereferencing · 280416b7
      Daniel Gustafsson 提交于
      Improves defensiveness of programming around pointer derefencing to
      ensure that we don't risk a NULL pointer. Most of these are quite
      straight-forward, those of note are discussed below.
      
      In doDispatchDtxProtocolCommand() we relied on the result data being
      created in zeroed out memory on CdbDispatchDtxProtocolCommand() which
      isn't guaranteed for every compiler. Explcitly set numResults to zero
      and also check the results for NULL.
      
      Per multiple reports by Coverity
      280416b7
  10. 25 8月, 2016 3 次提交
  11. 12 2月, 2016 1 次提交
  12. 07 1月, 2016 1 次提交
  13. 28 10月, 2015 1 次提交