leaves12138 commented on code in PR #6635: URL: https://github.com/apache/paimon/pull/6635#discussion_r2554757137
##########
paimon-core/src/main/java/org/apache/paimon/index/IndexFileMeta.java:
##########
@@ -53,13 +55,40 @@ public class IndexFileMeta {
4,
"_DELETIONS_VECTORS_RANGES",
new ArrayType(true,
DeletionVectorMeta.SCHEMA)),
- new DataField(5, "_EXTERNAL_PATH",
newStringType(true))));
+ new DataField(5, "_EXTERNAL_PATH",
newStringType(true)),
+ new DataField(
+ 6,
+ "_GLOBAL_INDEX",
+ new RowType(
+ true,
+ Arrays.asList(
+ new DataField(
+ 0,
+ "_ROW_RANGE_START",
+ new
BigIntType(true)),
+ new DataField(
+ 1,
+ "_ROW_RANGE_END",
+ new
BigIntType(true)),
+ new DataField(
+ 2,
+ "_INDEX_FIELD_ID",
+ new IntType(true)),
+ new DataField(
+ 3,
+ "_INDEX_META",
+ new
VarBinaryType()))))));
private final String indexType;
private final String fileName;
private final long fileSize;
private final long rowCount;
+ @Nullable private final Long rowRangeStart;
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
