1. 18 Sep, 2007 1 commit
  2. 17 Sep, 2007 1 commit
  3. 16 Sep, 2007 4 commits
    • Tom Lane's avatar
      Remove Assert(BgWriterShmem != NULL), which is rather pointless since · 039dc49d
      Tom Lane authored
      we'd dump core anyway immediately afterward if it were null; and it
      seems to confuse some versions of icc into generating bad code.
      Per report from Sergey Koposov.  Patched in HEAD only, for the moment,
      since this is only likely to affect developers.
      039dc49d
    • Tom Lane's avatar
      Fix overflow in extract(epoch from interval) for intervals exceeding 68 years. · 22d98e79
      Tom Lane authored
      Seems to have been introduced in 8.1 by careless SECS_PER_DAY
      search-and-replace.
      22d98e79
    • Tom Lane's avatar
      Update release notes for last-minute fix. · e92da1a9
      Tom Lane authored
      e92da1a9
    • Tom Lane's avatar
      Fix aboriginal mistake in lazy VACUUM's code for truncating away · 43b0c918
      Tom Lane authored
      no-longer-needed pages at the end of a table.  We thought we could throw away
      pages containing HEAPTUPLE_DEAD tuples; but this is not so, because such
      tuples very likely have index entries pointing at them, and we wouldn't have
      removed the index entries.  The problem only emerges in a somewhat unlikely
      race condition: the dead tuples have to have been inserted by a transaction
      that later aborted, and this has to have happened between VACUUM's initial
      scan of the page and then rechecking it for empty in count_nondeletable_pages.
      But that timespan will include an index-cleaning pass, so it's not all that
      hard to hit.  This seems to explain a couple of previously unsolved bug
      reports.
      43b0c918
  4. 15 Sep, 2007 1 commit
  5. 14 Sep, 2007 22 commits
  6. 13 Sep, 2007 3 commits
  7. 12 Sep, 2007 8 commits