leaves12138 commented on code in PR #6807:
URL: https://github.com/apache/paimon/pull/6807#discussion_r2638771860
##########
paimon-core/src/main/java/org/apache/paimon/globalindex/GlobalIndexScanBuilder.java:
##########
@@ -53,6 +54,7 @@ static Optional<GlobalIndexResult> parallelScan(
final List<Range> ranges,
final GlobalIndexScanBuilder globalIndexScanBuilder,
final Predicate filter,
+ final VectorSearch vectorSearch,
Review Comment:
@Nullable
##########
paimon-core/src/main/java/org/apache/paimon/globalindex/RowRangeGlobalIndexScanner.java:
##########
@@ -101,7 +102,15 @@ public RowRangeGlobalIndexScanner(
}
public Optional<GlobalIndexResult> scan(Predicate predicate) {
- return globalIndexEvaluator.evaluate(predicate);
+ return globalIndexEvaluator.evaluate(predicate, null);
+ }
+
+ public Optional<GlobalIndexResult> scan(VectorSearch vectorSearch) {
Review Comment:
@Nullable
--
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]