1. 02 Mar, 2004 10 commits
  2. 01 Mar, 2004 2 commits
  3. 29 Feb, 2004 4 commits
  4. 28 Feb, 2004 5 commits
  5. 27 Feb, 2004 5 commits
  6. 26 Feb, 2004 2 commits
  7. 25 Feb, 2004 2 commits
  8. 24 Feb, 2004 8 commits
  9. 23 Feb, 2004 2 commits
    • Tom Lane's avatar
      Fix obsolete comment. · 3f2cf812
      Tom Lane authored
      3f2cf812
    • Tom Lane's avatar
      Replace opendir/closedir calls throughout the backend with AllocateDir · 7a57a672
      Tom Lane authored
      and FreeDir routines modeled on the existing AllocateFile/FreeFile.
      Like the latter, these routines will avoid failing on EMFILE/ENFILE
      conditions whenever possible, and will prevent leakage of directory
      descriptors if an elog() occurs while one is open.
      Also, reduce PANIC to ERROR in MoveOfflineLogs() --- this is not
      critical code and there is no reason to force a DB restart on failure.
      All per recent trouble report from Olivier Hubaut.
      7a57a672