leaves12138 commented on code in PR #6684:
URL: https://github.com/apache/paimon/pull/6684#discussion_r2567259101
##########
paimon-api/src/main/java/org/apache/paimon/table/SpecialFields.java:
##########
@@ -150,6 +150,17 @@ public static RowType rowTypeWithRowTracking(RowType
rowType) {
* and write
*/
public static RowType rowTypeWithRowTracking(RowType rowType, boolean
sequenceNumberNullable) {
+ return rowTypeWithRowTracking(rowType, true, sequenceNumberNullable);
+ }
+
+ /**
+ * Add row tracking fields to rowType.
+ *
+ * @param sequenceNumberNullable sequence number is not null for user, but
is nullable when read
+ * and write
+ */
+ public static RowType rowTypeWithRowTracking(
Review Comment:
OK
##########
paimon-core/src/main/java/org/apache/paimon/manifest/IndexManifestFileHandler.java:
##########
@@ -191,6 +196,36 @@ public List<IndexManifestEntry> combine(
}
}
+ /** We combine the previous and new index files by file name. */
+ static class GlobalIndexCombiner implements IndexManifestFileCombiner {
Review Comment:
Sure
--
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]