Skip to content

Commit a8aa9b4

Browse files
committed
Fix Null predicates after cherry-pick
1 parent 5807c47 commit a8aa9b4

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
2020
import org.elasticsearch.xpack.esql.core.tree.Source;
2121
import org.elasticsearch.xpack.esql.core.type.DataType;
22-
import org.elasticsearch.xpack.esql.evaluator.mapper.EvaluatorMapper;
2322
import org.elasticsearch.xpack.esql.expression.function.Example;
2423
import org.elasticsearch.xpack.esql.expression.function.FunctionInfo;
2524
import org.elasticsearch.xpack.esql.expression.function.Param;

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88

99
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
1010
import org.elasticsearch.common.io.stream.StreamInput;
11-
import org.elasticsearch.compute.data.Block;
12-
import org.elasticsearch.compute.data.Page;
13-
import org.elasticsearch.compute.operator.DriverContext;
14-
import org.elasticsearch.compute.operator.EvalOperator;
15-
import org.elasticsearch.core.Releasables;
1611
import org.elasticsearch.xpack.esql.capabilities.TranslationAware;
1712
import org.elasticsearch.xpack.esql.core.expression.Expression;
1813
import org.elasticsearch.xpack.esql.core.expression.FoldContext;
@@ -25,7 +20,6 @@
2520
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
2621
import org.elasticsearch.xpack.esql.core.tree.Source;
2722
import org.elasticsearch.xpack.esql.core.type.DataType;
28-
import org.elasticsearch.xpack.esql.evaluator.mapper.EvaluatorMapper;
2923
import org.elasticsearch.xpack.esql.expression.function.Example;
3024
import org.elasticsearch.xpack.esql.expression.function.FunctionInfo;
3125
import org.elasticsearch.xpack.esql.expression.function.Param;
@@ -34,7 +28,7 @@
3428

3529
import java.io.IOException;
3630

37-
public class IsNull extends UnaryScalarFunction implements EvaluatorMapper, Negatable<UnaryScalarFunction>, TranslationAware {
31+
public class IsNull extends UnaryScalarFunction implements Negatable<UnaryScalarFunction>, TranslationAware {
3832
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(Expression.class, "IsNull", IsNull::new);
3933

4034
@FunctionInfo(

0 commit comments

Comments
 (0)