diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-04-18 00:18:31 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-04-18 00:18:31 +0000 |
commit | 4e9344345585d993797cce6292ff87e5735aad85 (patch) | |
tree | 596e2d6cbf67001201e809c3bd13f08439dec5d8 /doc/src | |
parent | 2edda80720b562f276fadb56d618bd7b63f408cd (diff) |
Document that the COPY delimiter must be an ASCII byte, rather than a
multi-byte value. It can also be a single-byte encoded character if
the client and server versions match.
Backpatch to 8.2.X.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 6eab13705fb..2770cde3bb9 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.77 2006/09/18 19:54:01 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.77.2.1 2007/04/18 00:18:31 momjian Exp $ PostgreSQL documentation --> @@ -171,7 +171,7 @@ COPY { <replaceable class="parameter">tablename</replaceable> [ ( <replaceable c <term><replaceable class="parameter">delimiter</replaceable></term> <listitem> <para> - The single character that separates columns within each row + The single ASCII character that separates columns within each row (line) of the file. The default is a tab character in text mode, a comma in <literal>CSV</> mode. </para> |