1. 05 Oct, 2000 6 commits
  2. 04 Oct, 2000 5 commits
  3. 03 Oct, 2000 10 commits
  4. 02 Oct, 2000 16 commits
  5. 01 Oct, 2000 2 commits
  6. 30 Sep, 2000 1 commit
    • Tom Lane's avatar
      Fix nasty TRUNCATE bug reported by Darrin Ladd. RelationTruncateIndexes · 36786a81
      Tom Lane authored
      would close and then re-open rel being truncated.  Depending on the
      luck of the draw, the re-opened relcache entry might or might not be
      at the same physical location as before.  Unfortunately, if it wasn't
      then heap_truncate would crash and burn, because it still had a pointer
      at the old location.  Fix is to open and then close rel in
      RelationTruncateIndexes, so that rel's refcount never goes to zero
      until heap_truncate is done.
      36786a81