leaves12138 commented on code in PR #7832:
URL: https://github.com/apache/paimon/pull/7832#discussion_r3238737695
##########
paimon-core/src/main/java/org/apache/paimon/io/KeyValueDataFileRecordReader.java:
##########
@@ -36,12 +36,23 @@ public class KeyValueDataFileRecordReader implements
FileRecordReader<KeyValue>
private final FileRecordReader<InternalRow> reader;
private final KeyValueSerializer serializer;
private final int level;
+ private final long snapshotId;
public KeyValueDataFileRecordReader(
FileRecordReader<InternalRow> reader, RowType keyType, RowType
valueType, int level) {
+ this(reader, keyType, valueType, level, KeyValue.UNKNOWN_SNAPSHOT_ID);
Review Comment:
Remote this constructor
--
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]