File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 99import org .elasticsearch .common .io .stream .NamedWriteableRegistry ;
1010import org .elasticsearch .common .io .stream .StreamInput ;
1111import org .elasticsearch .common .io .stream .StreamOutput ;
12- import org .elasticsearch .xpack .esql .core .expression .Attribute ;
1312import org .elasticsearch .xpack .esql .core .expression .Expression ;
1413import org .elasticsearch .xpack .esql .core .tree .NodeInfo ;
1514import org .elasticsearch .xpack .esql .core .tree .Source ;
1615import org .elasticsearch .xpack .esql .io .stream .PlanStreamInput ;
1716
1817import java .io .IOException ;
19- import java .util .List ;
2018import java .util .Objects ;
2119
2220public class FilterExec extends UnaryExec {
@@ -63,11 +61,6 @@ public Expression condition() {
6361 return condition ;
6462 }
6563
66- @ Override
67- public List <Attribute > output () {
68- return child ().output ();
69- }
70-
7164 @ Override
7265 public int hashCode () {
7366 return Objects .hash (condition , child ());
You can’t perform that action at this time.
0 commit comments