1. 04 Nov, 2006 2 commits
  2. 03 Nov, 2006 1 commit
  3. 01 Nov, 2006 3 commits
    • Tom Lane's avatar
      Fix "failed to re-find parent key" btree VACUUM failure by revising page · 70ce5c90
      Tom Lane authored
      deletion code to avoid the case where an upper-level btree page remains "half
      dead" for a significant period of time, and to block insertions into a key
      range that is in process of being re-assigned to the right sibling of the
      deleted page's parent.  This prevents the scenario reported by Ed L. wherein
      index keys could become out-of-order in the grandparent index level.
      
      Since this is a moderately invasive fix, I'm applying it only to HEAD.
      The bug exists back to 7.4, but the back branches will get a different patch.
      70ce5c90
    • Tom Lane's avatar
      pg_restore failed on tar-format archives if they contained large objects · 19d0c46d
      Tom Lane authored
      (blobs) with comments, per bug #2727 from Konstantin Pelepelin.
      Mea culpa for not having tested this case.
      Back-patch to 8.1; prior branches don't dump blob comments at all.
      19d0c46d
    • Tom Lane's avatar
      Update zic database to tzdata2006n. · c1fdbba4
      Tom Lane authored
      c1fdbba4
  4. 31 Oct, 2006 3 commits
  5. 30 Oct, 2006 2 commits
  6. 27 Oct, 2006 1 commit
  7. 26 Oct, 2006 3 commits
  8. 25 Oct, 2006 1 commit
    • Tom Lane's avatar
      expression_tree_walker failed to let walker function see the immediate child · 76d5f6f0
      Tom Lane authored
      node of a SubLink or SubPlan testexpr field.  Bug resulted from replacing
      the old lefthand/exprs list fields with a simple expression field, and not
      remembering that expression_tree_walker is coded to save a few cycles by
      recursing directly to self on list fields (on the assumption the walker
      isn't interested in List nodes per se).  On non-list fields it must of
      course call the walker.  Possibly that hack isn't worth the risk of more
      such bugs, but I'll leave it be for now.  Per bug report from James Robinson.
      76d5f6f0
  9. 24 Oct, 2006 5 commits
  10. 23 Oct, 2006 6 commits
  11. 22 Oct, 2006 4 commits
  12. 21 Oct, 2006 9 commits