There is a csv file, content like( splitter is \u0001)try read as a table :
SELECT * FROM read_files('{csv_file_path}', format => 'csv', header => false, sep=>"\u0001", quote=>'"', escape=>'\\', charToEscapeQuoteEscaping=>'\0', nullValue=>'\\N', schema => 'id int, name string, ts string')
the record id=3 is parse failed.here is expect:
1 "abc null2 \abc null3 ab"""c\ null4 abc" null5 \"abc null6 ab\\c null7 \\"abc null8 abc\\" null
Can anybody help here on how to parse the csv file? Thanks a lot. I tried a lot of csv options, and did not work.