mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-24 07:17:00 +08:00
Allow * as parameter for FORCE QUOTE for COPY CSV. Itagaki Takahiro.
This commit is contained in:
@ -128,6 +128,7 @@ INSERT INTO y VALUES ('', NULL);
|
||||
COPY y TO stdout WITH CSV;
|
||||
COPY y TO stdout WITH CSV QUOTE '''' DELIMITER '|';
|
||||
COPY y TO stdout WITH CSV FORCE QUOTE col2 ESCAPE E'\\';
|
||||
COPY y TO stdout WITH CSV FORCE QUOTE *;
|
||||
|
||||
--test that we read consecutive LFs properly
|
||||
|
||||
|
||||
Reference in New Issue
Block a user