Github user FelixNeutatz commented on the pull request:
https://github.com/apache/incubator-flink/pull/201#issuecomment-64100176
So I would need to iterate over the content of
DelimitedInputFormat.nextRecord():
```java
if (readLine()) {
return readRecord(record, this.currBuffer, this.currOffset,
this.currLen);
} else {
this.end = true;
return null;
}
```
The problem is, in CsvInputFormat I have no access to this.currBuffer,
this.currOffset, this.currLen. Therefore I see only two alternatives:
1) I copy the functionality of readLine() to CsvInputFormat
2) change access of the private variables this.currBuffer, this.currOffset,
this.currLen in DelimitedInputFormat to protected or add corresponding
getFunctions ...
What is the better solution in your opinion
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---