File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/predicate/nulls Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change 19
19
import org .elasticsearch .xpack .esql .core .tree .NodeInfo ;
20
20
import org .elasticsearch .xpack .esql .core .tree .Source ;
21
21
import org .elasticsearch .xpack .esql .core .type .DataType ;
22
- import org .elasticsearch .xpack .esql .evaluator .mapper .EvaluatorMapper ;
23
22
import org .elasticsearch .xpack .esql .expression .function .Example ;
24
23
import org .elasticsearch .xpack .esql .expression .function .FunctionInfo ;
25
24
import org .elasticsearch .xpack .esql .expression .function .Param ;
Original file line number Diff line number Diff line change 8
8
9
9
import org .elasticsearch .common .io .stream .NamedWriteableRegistry ;
10
10
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 ;
16
11
import org .elasticsearch .xpack .esql .capabilities .TranslationAware ;
17
12
import org .elasticsearch .xpack .esql .core .expression .Expression ;
18
13
import org .elasticsearch .xpack .esql .core .expression .FoldContext ;
25
20
import org .elasticsearch .xpack .esql .core .tree .NodeInfo ;
26
21
import org .elasticsearch .xpack .esql .core .tree .Source ;
27
22
import org .elasticsearch .xpack .esql .core .type .DataType ;
28
- import org .elasticsearch .xpack .esql .evaluator .mapper .EvaluatorMapper ;
29
23
import org .elasticsearch .xpack .esql .expression .function .Example ;
30
24
import org .elasticsearch .xpack .esql .expression .function .FunctionInfo ;
31
25
import org .elasticsearch .xpack .esql .expression .function .Param ;
34
28
35
29
import java .io .IOException ;
36
30
37
- public class IsNull extends UnaryScalarFunction implements EvaluatorMapper , Negatable <UnaryScalarFunction >, TranslationAware {
31
+ public class IsNull extends UnaryScalarFunction implements Negatable <UnaryScalarFunction >, TranslationAware {
38
32
public static final NamedWriteableRegistry .Entry ENTRY = new NamedWriteableRegistry .Entry (Expression .class , "IsNull" , IsNull ::new );
39
33
40
34
@ FunctionInfo (
You can’t perform that action at this time.
0 commit comments