diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-12-04 21:19:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-12-04 21:19:57 +0000 |
commit | 969cc16c690d0f23bab9c95a7e26b5ac409ac628 (patch) | |
tree | f072d17d5f83b22cfa62716df6dd4d02d7e95b34 /doc/src | |
parent | a0734d1eb12b858073dbb91a8c5636f0a1872755 (diff) | |
download | postgresql-969cc16c690d0f23bab9c95a7e26b5ac409ac628.tar.gz postgresql-969cc16c690d0f23bab9c95a7e26b5ac409ac628.zip |
Enforce restriction that COPY DELIMITERS string must be exactly one
character; replace strchr() search with simple comparison to speed up
COPY IN. Per discussion in pghackers.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 0381610896c..df607d500f4 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.24 2001/09/13 15:55:24 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.25 2001/12/04 21:19:57 tgl Exp $ Postgres documentation --> @@ -227,9 +227,6 @@ ERROR: <replaceable>reason</replaceable> character with the keyword phrase USING DELIMITERS. Characters in data fields which happen to match the delimiter character will be backslash quoted. - Note that the delimiter is always a single character. - If multiple characters are specified in the delimiter string, - only the first character is used. </para> <para> |