[
https://issues.apache.org/jira/browse/FLINK-2061?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Fabian Hueske resolved FLINK-2061.
----------------------------------
Resolution: Fixed
Fixed with 12cd15622afbbcbb40c9dd80151f4ca459a26922
> CSVReader: quotedStringParsing and includeFields yields ParseException
> ----------------------------------------------------------------------
>
> Key: FLINK-2061
> URL: https://issues.apache.org/jira/browse/FLINK-2061
> Project: Flink
> Issue Type: Bug
> Components: Core
> Affects Versions: 0.9
> Reporter: Fabian Hueske
> Assignee: Chiwan Park
>
> Fields in a CSV file with quoted String cannot be skipped.
> Parsing a line such as:
> {code}
> "20:41:52-1-3-2015"|"Re: Taskmanager memory error in Eclipse"|"Stephan Ewen
> <[email protected]>"|"bla"|"blubb"
> {code}
> with a CSVReader configured as:
> {code}
> DataSet<Tuple2<String, String>> data =
> env.readCsvFile("/path/to/my/data")
> .lineDelimiter("\n")
> .fieldDelimiter("|")
> .parseQuotedStrings('"')
> .includeFields("101")
> .types(String.class, String.class);
> {code}
> gives a {{ParseException}}.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)