From: Bruce Momjian Date: Wed, 18 Apr 2007 00:17:56 +0000 (+0000) Subject: Document that the COPY delimiter must be an ASCII byte, rather than a X-Git-Tag: REL8_3_BETA1~811 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=739425dbe32826a54f77533133d1c7674aa62617;p=postgresql 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. --- diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 5d3bf59067..0140ea28ae 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ @@ -171,7 +171,7 @@ COPY { tablename [ ( delimiter - 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 CSV mode.