1. 26 Apr, 2007 4 commits
  2. 25 Apr, 2007 5 commits
  3. 24 Apr, 2007 3 commits
  4. 23 Apr, 2007 2 commits
  5. 22 Apr, 2007 4 commits
  6. 21 Apr, 2007 12 commits
  7. 20 Apr, 2007 7 commits
  8. 19 Apr, 2007 3 commits
    • Tom Lane's avatar
      Sync timezone data with 2007e zic release. · 9350056e
      Tom Lane authored
      9350056e
    • Tom Lane's avatar
      Repair PANIC condition in hash indexes when a previous index extension attempt · 9d37c038
      Tom Lane authored
      failed (due to lock conflicts or out-of-space).  We might have already
      extended the index's filesystem EOF before failing, causing the EOF to be
      beyond what the metapage says is the last used page.  Hence the invariant
      maintained by the code needs to be "EOF is at or beyond last used page",
      not "EOF is exactly the last used page".  Problem was created by my patch
      of 2006-11-19 that attempted to repair bug #2737.  Since that was
      back-patched to 7.4, this needs to be as well.  Per report and test case
      from Vlastimil Krejcir.
      9d37c038
    • Tom Lane's avatar
      Fix plpgsql to avoid reference to already-freed memory when returning a · 77a41e71
      Tom Lane authored
      pass-by-reference data type and the RETURN statement is within an EXCEPTION
      block.  Bug introduced by my fix of 2007-01-28 to use per-subtransaction
      ExprContexts/EStates; since that wasn't back-patched into older branches,
      only 8.2 and HEAD are affected.  Per report from Gary Winslow.
      77a41e71