Skip to content

Commit 68907ff

Browse files
committed
Add missing type "text" for the operator
1 parent 22f4388 commit 68907ff

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

docs/reference/esql/functions/kibana/definition/match_operator.json

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/esql/functions/types/match_operator.asciidoc

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchOperatorTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public static Iterable<Object[]> parameters() {
3333
// Have a minimal test so that we can generate the docs
3434
List<TestCaseSupplier> suppliers = new LinkedList<>();
3535
addPositiveTestCase(List.of(DataType.KEYWORD, DataType.KEYWORD), suppliers);
36+
addPositiveTestCase(List.of(DataType.TEXT, DataType.TEXT), suppliers);
3637
return parameterSuppliersFromTypedData(suppliers);
3738
}
3839
}

0 commit comments

Comments
 (0)