From 4e9344345585d993797cce6292ff87e5735aad85 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 18 Apr 2007 00:18:31 +0000 Subject: [PATCH] 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. --- doc/src/sgml/ref/copy.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 6eab13705f..2770cde3bb 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.