1. 27 Oct, 2005 9 commits
  2. 26 Oct, 2005 3 commits
  3. 25 Oct, 2005 9 commits
  4. 24 Oct, 2005 6 commits
  5. 23 Oct, 2005 2 commits
  6. 22 Oct, 2005 8 commits
  7. 21 Oct, 2005 3 commits
    • Tom Lane's avatar
      Improve performance of CHECK_FOR_INTERRUPTS() macro on Windows by not doing · 6aad07d2
      Tom Lane authored
      a kernel call unless there's some evidence of a pending signal.  This should
      bring its performance on Windows into line with the Unix version.  Problem
      diagnosis and patch by Qingqing Zhou.  Minor stylistic tweaks by moi ...
      if it's broken, it's my fault.
      6aad07d2
    • Tom Lane's avatar
      Clean up autovacuum documentation, which was a bit out of sync with what · fdff883a
      Tom Lane authored
      the code actually does, and needed copy-editing anyway.  Also take the
      opportunity to expand the section on routine reindexing.
      fdff883a
    • Tom Lane's avatar
      Fix EXPLAIN ANALYZE bug noted by Wiebe Cazemier: although we were · 9fc24f2b
      Tom Lane authored
      properly advancing the CommandCounter between multiple sub-queries
      generated by rules, we forgot to update the snapshot being used, so
      that the successive sub-queries didn't actually see each others'
      results.  This is still not *exactly* like the semantics of normal
      execution of the same queries, in that we don't take new transaction
      snapshots and hence don't see changes from concurrently committed
      commands, but I think that's OK and probably even preferable for
      EXPLAIN ANALYZE.
      9fc24f2b