1. 29 Oct, 2002 4 commits
  2. 28 Oct, 2002 3 commits
    • Bruce Momjian's avatar
      Add ORDER BY to join regression test. · 13d7a689
      Bruce Momjian authored
      13d7a689
    • Bruce Momjian's avatar
      Update from Neil Conway: · c2159022
      Bruce Momjian authored
      < * Add floor(float8) and other missing functions
      > * -Add floor(float8) and other missing functions
      174c174
      < * Improve concurrency of hash indexes (Neil Conway)
      > * Improve concurrency of hash indexes (Neil)
      277c277
      < 	o Allow array declarations and other data types in PL/PgSQl DECLARE
      > 	o Allow array declarations and other data types in PL/PgSQL DECLARE
      293c293
      < * -Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil Conway)
      > * -Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil)
      474c474
      < * Precompile SQL functions to avoid overhead (Neil Conway)
      > * Precompile SQL functions to avoid overhead (Neil)
      549c549
      < * Neil is Neil Conway <nconway@klamath.dyndns.org>
      > * Neil is Neil Conway <neilc@samurai.com>
      c2159022
    • Bruce Momjian's avatar
      fseeko NetBSD fix. · 323e03ae
      Bruce Momjian authored
      323e03ae
  3. 27 Oct, 2002 2 commits
  4. 26 Oct, 2002 6 commits
  5. 25 Oct, 2002 6 commits
  6. 24 Oct, 2002 11 commits
  7. 23 Oct, 2002 7 commits
  8. 22 Oct, 2002 1 commit
    • Tom Lane's avatar
      Perform transaction cleanup operations in a less ad-hoc, more · 30963fc2
      Tom Lane authored
      principled order; in particular ensure that all shared resources
      are released before we release transaction locks.  The code used
      to release locks before buffer pins, which might explain an ancient
      note I have about a bufmgr assertion failure I'd seen once several
      years ago, and been unable to reproduce since.  (Theory: someone
      trying to drop a relation might be able to reach FlushRelationBuffers
      before the last user of the relation had gotten around to dropping
      his buffer pins.)
      30963fc2