You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Fabian Hueske (JIRA)" <ji...@apache.org> on 2015/05/20 15:44:00 UTC

[jira] [Created] (FLINK-2061) CSVReader: quotedStringParsing and includeFields yields ParseException

Fabian Hueske created FLINK-2061:
------------------------------------

             Summary: 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


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 <se...@apache.org>"|"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)