Skip to content

Commit 05743bf

Browse files
committed
Description
1 parent 846bb39 commit 05743bf

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/reference/query-languages/esql/kibana/definition/operators/is_not_null.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/definition/operators/is_null.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/docs/operators/is_not_null.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/query-languages/esql/kibana/docs/operators/is_null.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/predicate/nulls/IsNotNull.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class IsNotNull extends UnaryScalarFunction implements EvaluatorMapper, N
4040
);
4141

4242
@FunctionInfo(
43-
description = "Is *not* this null?",
43+
description = "Checks if a value *not* is `NULL`.",
4444
note = "If a field is only in some documents it will be `NULL` in the documents that did not contain it.",
4545
operator = "IS NOT NULL",
4646
returnType = {

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/predicate/nulls/IsNull.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class IsNull extends UnaryScalarFunction implements EvaluatorMapper, Nega
3737
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "IsNull", IsNull::new);
3838

3939
@FunctionInfo(
40-
description = "Is this `NULL`?",
40+
description = "Checks if a value is `NULL`.",
4141
note = "If a field is only in some documents it will be `NULL` in the documents that did not contain it.",
4242
operator = "IS NULL",
4343
returnType = {

0 commit comments

Comments
 (0)