leaves12138 commented on code in PR #5935:
URL: https://github.com/apache/paimon/pull/5935#discussion_r2235270342


##########
paimon-api/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -1911,6 +1911,11 @@ public InlineElement getDescription() {
                                     + "respectively. When not configured, it 
will automatically determine the algorithm based on the number of columns "
                                     + "in 'sink.clustering.by-columns'. 
'order' is used for 1 column, 'zorder' for less than 5 columns, "
                                     + "and 'hilbert' for 5 or more columns.");
+    public static final ConfigOption<Boolean> ROW_TRACKING_ENABLED =

Review Comment:
   OK



##########
paimon-core/src/main/java/org/apache/paimon/io/DataFileMeta.java:
##########
@@ -275,6 +286,11 @@ public DataFileMeta(
         this.fileSource = fileSource;
         this.valueStatsCols = valueStatsCols;
         this.externalPath = externalPath;
+        this.firstRowId = firstRowId;
+    }
+
+    public void setFirstRowId(@Nullable Long firstRowId) {

Review Comment:
   OK



##########
paimon-core/src/main/java/org/apache/paimon/io/DataFileMeta.java:
##########
@@ -452,7 +475,31 @@ public DataFileMeta copyWithoutStats() {
                 embeddedIndex,
                 fileSource,
                 Collections.emptyList(),
-                externalPath);
+                externalPath,
+                firstRowId);
+    }
+
+    public DataFileMeta copyWithMaxSequenceNumber(long maxSequenceNumber) {

Review Comment:
   OK



-- 
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: issues-unsubscr...@paimon.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to