Hello
I get an error when loading this kind of csv:
> test.csv:
"hello ""world"" "
"\."
"this
works
"
"this
\.
does
not"
> table:
create table test (field text);
> sql:
\copy test (field) from 'test.csv' CSV quote '"' ESCAPE '"';
ERROR: unterminated CSV quoted field
CONTEXTE : COPY test, line 7: ""this
"
Apparently, having the \. string in a single line make it break.
Is this normal ?
Thanks