diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-12-28 14:38:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-12-28 14:38:32 +0000 |
commit | 9c72df4e863115ea2dfb9544dc7ee1c5747a70a7 (patch) | |
tree | 2ee60217e4eb8df5474debbd7b8b81e430dd0f1b | |
parent | 6fa335721a8c33a3e4a15cceb76c018b82bf498b (diff) | |
download | postgresql-9c72df4e863115ea2dfb9544dc7ee1c5747a70a7.tar.gz postgresql-9c72df4e863115ea2dfb9544dc7ee1c5747a70a7.zip |
Update COPY CSV \. wording for externally created files.
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index becaecf5b82..bf6b1f1c3fc 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.71 2005/12/28 03:25:32 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.72 2005/12/28 14:38:32 momjian Exp $ PostgreSQL documentation --> @@ -517,9 +517,10 @@ COPY <replaceable class="parameter">tablename</replaceable> [ ( <replaceable cla as a data value. To avoid any misinterpretation, a <literal>\.</> data value appearing as a lone entry on a line is automatically quoted on output, and on input, if quoted, is not interpreted as the - end-of-data marker. If you are loading a single-column table that - might have a column value of <literal>\.</>, you might need to quote - that value in the input file. + end-of-data marker. If you are loading a file created by another + application that has a single unquoted column and might have a + value of <literal>\.</>, you might need to quote that value in the + input file. </para> <note> |