From: Bruce Momjian Date: Wed, 18 Apr 2007 00:18:31 +0000 (+0000) Subject: Document that the COPY delimiter must be an ASCII byte, rather than a X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=14eb6421022d6db63306012c4db4ec183d73662e;p=users%2Fbernd%2Fpostgres.git 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 7eebfb941c..24d3faf5d6 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -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.