Skip to content

Commit 91d4a0a

Browse files
committed
Fix typo
1 parent 6e4c1a9 commit 91d4a0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownConjunctionsToKnnPrefilters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private static Expression pushConjunctionsToKnn(Expression expression, Stack<Exp
5858
case Knn knn:
5959
// Create a copy of the filters, and check the number of existing filters. We don't check for equality
6060
// as having two knn functions on opposite sides of the And is valid, but could lead to infinite number
61-
// of changes as the knn functions would recveive the other knn functions as filters and would be constantly
61+
// of changes as the knn functions would receive the other knn functions as filters and would be constantly
6262
// updating
6363
List<Expression> newFilters = new ArrayList<>(filters);
6464
if (newFilters.size() == knn.filterExpressions().size()) {

0 commit comments

Comments
 (0)