1. 13 8月, 2009 1 次提交
  2. 12 8月, 2009 4 次提交
  3. 11 8月, 2009 7 次提交
  4. 10 8月, 2009 3 次提交
  5. 09 8月, 2009 1 次提交
  6. 08 8月, 2009 7 次提交
    • T
      Modify parallel pg_restore to track pending and ready items by means of · f033f6d2
      Tom Lane 提交于
      two new lists, rather than repeatedly rescanning the main TOC list.
      This avoids a potential O(N^2) slowdown, although you'd need a *lot*
      of tables to make that really significant; and it might simplify future
      improvements in the scheduling algorithm by making the set of ready
      items more easily inspectable.  The original thought that it would
      in itself result in a more efficient job dispatch order doesn't seem
      to have been borne out in testing, but it seems worth doing anyway.
      f033f6d2
    • A
      Document that autovacuum may run ANALYZE · 05f43650
      Alvaro Herrera 提交于
      05f43650
    • P
      Expand test coverage support to entire tree · 7798147a
      Peter Eisentraut 提交于
      Test coverage support now covers the entire source tree, including
      contrib, instead of just src/backend.  In a related but independent
      development, the commands make coverage and make coverage-html can be run
      in any directory.
      
      This turned out to be much easier than feared.  Besides a few ad hoc fixes
      to pass the make target down the tree, change all affected makefiles to
      list their directories in the SUBDIRS variable, changed from variants like
      DIRS and WANTED_DIRS.  MSVC build fix was attempted as well.
      7798147a
    • T
      Try to defend against the possibility that libpq is still in COPY_IN state · e605fbcc
      Tom Lane 提交于
      when we reach the post-COPY "pump it dry" error recovery code that was added
      2006-11-24.  Per a report from Neil Best, there is at least one code path
      in which this occurs, leading to an infinite loop in code that's supposed
      to be making it more robust not less so.  A reasonable response seems to be
      to call PQputCopyEnd() again, so let's try that.
      
      Back-patch to all versions that contain the cleanup loop.
      e605fbcc
    • T
      rm_cleanup functions need to be allowed to write WAL entries. This oversight · 87740caa
      Tom Lane 提交于
      appears to explain the recent reports of "PANIC: cannot make new WAL entries
      during recovery".
      87740caa
    • B
      Remove unused ecpg variable. · d2e7afe5
      Bruce Momjian 提交于
      d2e7afe5
    • T
      Remove long-since-unused file commands/version.h. · 3783c9d4
      Tom Lane 提交于
      Noticed by Itagaki Takahiro.
      3783c9d4
  7. 07 8月, 2009 4 次提交
  8. 06 8月, 2009 5 次提交
  9. 05 8月, 2009 8 次提交