1. 12 May, 2005 2 commits
  2. 11 May, 2005 15 commits
  3. 10 May, 2005 8 commits
  4. 09 May, 2005 8 commits
  5. 08 May, 2005 3 commits
  6. 07 May, 2005 4 commits
    • Tom Lane's avatar
      Repair very-low-probability race condition between relation extension · 30f540be
      Tom Lane authored
      and VACUUM: in the interval between adding a new page to the relation
      and formatting it, it was possible for VACUUM to come along and decide
      it should format the page too.  Though not harmful in itself, this would
      cause data loss if a third transaction were able to insert tuples into
      the vacuumed page before the original extender got control back.
      30f540be
    • Tom Lane's avatar
      Adjust time qual checking code so that we always check TransactionIdIsInProgress · b72e5fa1
      Tom Lane authored
      before we check commit/abort status.  Formerly this was done in some paths
      but not all, with the result that a transaction might be considered
      committed for some purposes before it became committed for others.
      Per example found by Jan Wieck.
      b72e5fa1
    • Tom Lane's avatar
    • Bruce Momjian's avatar
      Add description: · 8a9e3291
      Bruce Momjian authored
      <   Currently locale can only be set during initdb.
      >   Currently locale can only be set during initdb.  No global tables have
      >   locale-aware columns.  However, the database template used during
      >   database creation might have locale-aware indexes.  The indexes would
      >   need to be reindexed to match the new locale.
      8a9e3291