afedulov commented on code in PR #19286:
URL: https://github.com/apache/flink/pull/19286#discussion_r862972424
##########
flink-formats/flink-csv/src/main/java/org/apache/flink/formats/csv/CsvRowDataDeserializationSchema.java:
##########
@@ -65,13 +65,14 @@ public final class CsvRowDataDeserializationSchema
implements DeserializationSch
private final boolean ignoreParseErrors;
private CsvRowDataDeserializationSchema(
- RowType rowType,
+ RowType rowResultType,
TypeInformation<RowData> resultTypeInfo,
CsvSchema csvSchema,
boolean ignoreParseErrors) {
this.resultTypeInfo = resultTypeInfo;
this.runtimeConverter =
- new
CsvToRowDataConverters(ignoreParseErrors).createRowConverter(rowType, true);
+ new CsvToRowDataConverters(ignoreParseErrors)
+ .createRowConverter(rowResultType, true);
Review Comment:
I moved the converter initialization to the Builder.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]