1. 30 May, 2006 22 commits
  2. 29 May, 2006 5 commits
  3. 28 May, 2006 6 commits
  4. 27 May, 2006 5 commits
  5. 26 May, 2006 2 commits
    • Bruce Momjian's avatar
      Use E'' strings internally only when standard_conforming_strings = · 7a846ecc
      Bruce Momjian authored
      'off'. This allows pg_dump output with standard_conforming_strings =
      'on' to generate proper strings that can be loaded into other databases
      without the backslash doubling we typically do.  I have added the
      dumping of the standard_conforming_strings value to pg_dump.
      
      I also added standard backslash handling for plpgsql.
      7a846ecc
    • Tom Lane's avatar
      Further hacking on performance of COPY OUT. It seems that fwrite()'s · 4d63e267
      Tom Lane authored
      per-call overhead is quite significant, at least on Linux: whatever
      it's doing is more than just shoving the bytes into a buffer.  Buffering
      the data so we can call fwrite() just once per row seems to be a win.
      4d63e267