1. 15 1月, 2002 17 次提交
  2. 14 1月, 2002 3 次提交
  3. 13 1月, 2002 8 次提交
  4. 12 1月, 2002 7 次提交
    • T
      Repair bugs in declarations of routines to add timestamptz and interval. · 192061e4
      Thomas G. Lockhart 提交于
       Thanks to Bruce for spotting it and Tom Lane for diagnosing it.
      Since horology test output is changing anyway, add some date/time input
       tests to horology.sql. Some of these should move to the tests for the
       individual data types, and we perhaps should add an entire new test
       for "timezone" to allow manipulating the current time zone without
       risking damage to the results of other tests.
      192061e4
    • T
      Fix pg_dump to read-lock all tables to be dumped as soon as it's read · 0e1a5075
      Tom Lane 提交于
      their names from pg_class.  This considerably reduces the window wherein
      someone could DROP or ALTER a table that pg_dump is intending to dump.
      Not a perfect solution, but definitely an improvement.  Per complaints
      from Marc Fournier; patch by Brent Verner with some kibitzing by Tom Lane.
      0e1a5075
    • T
      Code review for latest changes. · 5c2d36c3
      Tom Lane 提交于
      5c2d36c3
    • B
      c6fdf8bc
    • B
      Sync up. · 3bb77555
      Bruce Momjian 提交于
      3bb77555
    • 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
  5. 11 1月, 2002 5 次提交