wzhero1 commented on code in PR #6858:
URL: https://github.com/apache/paimon/pull/6858#discussion_r2652129396
##########
paimon-core/src/main/java/org/apache/paimon/table/source/splitread/IncrementalChangelogReadProvider.java:
##########
@@ -75,7 +74,8 @@ private SplitRead<InternalRow>
create(Supplier<MergeFileSplitRead> supplier) {
dataSplit.dataFiles(),
dataSplit.deletionFiles().orElse(null),
false));
- return unwrap(reader);
+ return KeyValueSystemFieldsRecordReader.wrap(
+ reader, read.getSystemFieldExtractors(),
read.getProjection());
Review Comment:
unwrap is also correct, but i changed to `KeyValueTableRead.unwrap(reader,
mergeRead.getSystemFieldExtractors(), mergeRead.getProjection())`, so unwrap
can be private in `KeyValueTableRead`
--
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]