davidradl commented on code in PR #27130:
URL: https://github.com/apache/flink/pull/27130#discussion_r2444253162


##########
flink-table/flink-table-common/src/main/java/org/apache/flink/table/functions/AsyncVectorSearchFunction.java:
##########
@@ -49,7 +49,7 @@ public void eval(CompletableFuture<Collection<RowData>> 
future, Object... args)
         int topK = (int) args[0];
         GenericRowData argsData = new GenericRowData(args.length - 1);
         for (int i = 1; i < args.length; ++i) {
-            argsData.setField(i, args[i]);
+            argsData.setField(i - 1, args[i]);

Review Comment:
   does this change mean that the previous code did not work? Is the symptom of 
this failure included in the Jira?



-- 
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]

Reply via email to