1. 23 Jun, 1999 2 commits
  2. 21 Jun, 1999 5 commits
  3. 19 Jun, 1999 6 commits
  4. 18 Jun, 1999 3 commits
  5. 17 Jun, 1999 5 commits
  6. 16 Jun, 1999 4 commits
  7. 14 Jun, 1999 12 commits
  8. 13 Jun, 1999 1 commit
  9. 12 Jun, 1999 2 commits
    • Tom Lane's avatar
      Move default NBuffers setting into config.h, and rename it · 642d21a5
      Tom Lane authored
      to DEF_NBUFFERS for readability.  Make sure the default value is OK
      according to postmaster.c's new sanity check for -B values.
      642d21a5
    • Tom Lane's avatar
      Fix critical error noticed by Massimo: copy.c used to have a · d9e223d5
      Tom Lane authored
      special hack to ensure it would close its output file even after failure
      due to elog(ERROR) partway through the copy.  This is now unnecessary
      because fd.c takes care of cleaning up open files at transaction abort;
      worse, after fd.c closed the file copy.c would try to do so *again* at
      the start of the next COPY command.  This would result in havoc in most
      implementations of stdio library.
      d9e223d5