Hi,
I¹m try to import a CSV file but the parser seems to have problems this
quotes in the beginning of a field. Is there a way to set or disable
enclosures for the CSV input?
This is my code:
DataSet<Tuple2<String, String>> res = env.readCsvFile(inputCsvFilename)
.fieldDelimiter('|')
.types(String.class, String.class)
CSV:
A|ggg
B|"hhh" xx
C|xxx
As result I¹m receiving a ParserException for line B:
org.apache.flink.api.common.io.ParseException: Line could not be parsed:
'B|"hhh" xx
Thanks,
Malte