1. 30 May, 2006 18 commits
  2. 29 May, 2006 5 commits
  3. 28 May, 2006 6 commits
  4. 27 May, 2006 5 commits
  5. 26 May, 2006 6 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
    • Tom Lane's avatar
      Support binary COPY through psql. Also improve detection of write errors · 223ae695
      Tom Lane authored
      during COPY OUT.  Andreas Pflug, some editorialization by moi.
      223ae695
    • Bruce Momjian's avatar
      Update AIX FAQ. · aadd8a23
      Bruce Momjian authored
      Chris Browne
      aadd8a23
    • Andrew Dunstan's avatar
      · 0a269db9
      Andrew Dunstan authored
      Add table_name and table_schema to plpython trigger data, plus docs and regression test.
      0a269db9
    • Andrew Dunstan's avatar
      · 777f72cd
      Andrew Dunstan authored
      Add table_name and table_schema to plperl trigger data. relname is
      kept but now deprecated. Patch from Adam Sjøgren. Add regression test to
      show plperl trigger data (Andrew).
      TBD: apply similar changes to plpgsql, plpython and pltcl.
      777f72cd