Postgresql copy CSV format, double quote escape not working
Running into an issue with copying the following data into a DB 1, ab"c I receive an unterminated quote error when running the following SQL copy table_name from sample.tsv CSV DELIMITER ',' QUOTE '"' ESCAPE E'\' Based on the postgresql…