From: Tom Lane Date: Fri, 10 Oct 2008 21:46:34 +0000 (+0000) Subject: Fix COPY documentation to not imply that HEADER can be used outside CSV mode. X-Git-Tag: REL8_4_BETA1~884 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74fd3d1b23734c2936ad0c8aef220aa35235ef0b;p=postgresql Fix COPY documentation to not imply that HEADER can be used outside CSV mode. Per gripe from Bill Thoen. --- diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index bd1b94ae39..762446778e 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ @@ -37,7 +37,6 @@ COPY { tablename [ ( filename' | STDOUT } [ [ WITH ] [ BINARY ] - [ HEADER ] [ OIDS ] [ DELIMITER [ AS ] 'delimiter' ] [ NULL [ AS ] 'null string' ] @@ -214,7 +213,7 @@ COPY { tablename [ ( HEADER - Specifies the file contains a header line with the names of each + Specifies that the file contains a header line with the names of each column in the file. On output, the first line contains the column names from the table, and on input, the first line is ignored.