1. 12 1月, 2002 2 次提交
    • T
      VACUUM must make sure that a HEAP_MARKED_FOR_UPDATE tuple gets marked · 5ab0ad5c
      Tom Lane 提交于
      as either HEAP_XMAX_COMMITTED or HEAP_XMAX_INVALID once the updating
      transaction is gone.  Otherwise some other transaction may come along
      and try to test the commit status of t_xmax later --- which could be
      after VACUUM has recycled the CLOG status for that xact.  Bug introduced
      in post-beta4 bug fix.
      5ab0ad5c
    • T
      Fix sequence creation to set the t_xmin of a sequence's tuple to · eb5e8bae
      Tom Lane 提交于
      FrozenTransactionId, not the XID of the creating transaction.  Without
      this it's possible for a reference to a long-gone CLOG record to occur,
      per Christian Meunier's bug report of 10-Jan-02.  Worse, the sequence
      tuple would become invisible to SELECTs after 2 billion transactions.
      
      Since the fix is applied during sequence creation it does not help
      existing databases, unless you drop and recreate every sequence.
      However, we intend to force initdb for 7.2RC1 anyway, to fix a pg_proc
      error, so I see no need to do more for this problem.
      eb5e8bae
  2. 11 1月, 2002 22 次提交
  3. 10 1月, 2002 10 次提交
  4. 09 1月, 2002 6 次提交