File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public boolean expressionsResolved() {
4545
4646 @ Override
4747 public int hashCode () {
48- return Objects .hash (source (). hashCode (), subPlans );
48+ return Objects .hash (subPlans );
4949 }
5050
5151 @ Override
@@ -57,8 +57,7 @@ public boolean equals(Object o) {
5757 return false ;
5858 }
5959 Merge other = (Merge ) o ;
60-
61- return Objects .equals (source (), other .source ()) && Objects .equals (subPlans , other .subPlans );
60+ return Objects .equals (subPlans , other .subPlans );
6261 }
6362
6463 @ Override
Original file line number Diff line number Diff line change @@ -80,14 +80,14 @@ public List<? extends PhysicalPlan> subPlans() {
8080
8181 @ Override
8282 public int hashCode () {
83- return Objects .hash (source (). hashCode (), physSubPlans );
83+ return Objects .hash (physSubPlans );
8484 }
8585
8686 @ Override
8787 public boolean equals (Object o ) {
8888 if (this == o ) return true ;
8989 if (o == null || getClass () != o .getClass ()) return false ;
9090 MergeExec other = (MergeExec ) o ;
91- return Objects .equals (this .source (), other . source ()) && Objects . equals ( this . physSubPlans , other .physSubPlans );
91+ return Objects .equals (this .physSubPlans , other .physSubPlans );
9292 }
9393}
You can’t perform that action at this time.
0 commit comments