We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfbf6e7 commit 24d7469Copy full SHA for 24d7469
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java
@@ -919,6 +919,13 @@ public void testDeprecatedIsNullFunction() {
919
"line 1:22: is_null function is not supported anymore, please use 'is null'/'is not null' predicates instead"
920
);
921
}
922
+ if (EsqlCapabilities.Cap.DOUBLE_PARAMETER_MARKERS_FOR_IDENTIFIERS.isEnabled()) {
923
+ expectError(
924
+ "from test | eval x = ??fn1(f)",
925
+ List.of(paramAsConstant("fn1", "IS_NULL")),
926
+ "line 1:22: is_null function is not supported anymore, please use 'is null'/'is not null' predicates instead"
927
+ );
928
+ }
929
930
931
public void testMetadataFieldOnOtherSources() {
0 commit comments