diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-04-18 00:17:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-04-18 00:17:56 +0000 |
commit | 739425dbe32826a54f77533133d1c7674aa62617 (patch) | |
tree | 6d5b3119eb31518533d8a2e23fa86347d430d205 | |
parent | f30a72dcdb34bf7bf7e7900f91427542f30d0cfd (diff) | |
download | postgresql-739425dbe32826a54f77533133d1c7674aa62617.tar.gz postgresql-739425dbe32826a54f77533133d1c7674aa62617.zip |
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.
-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 5d3bf590675..0140ea28aeb 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.78 2007/01/31 23:26:03 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.79 2007/04/18 00:17:56 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> |