Skip to content

Commit fa8d5bd

Browse files
Fix EqualsAndHashCode annotation warning messages. (#847)
Signed-off-by: GabeFernandez310 <[email protected]>
1 parent 929ebfe commit fa8d5bd

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

core/src/main/java/org/opensearch/sql/planner/physical/AggregationOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Group the all the input {@link BindingTuple} by {@link AggregationOperator#groupByExprList},
2626
* calculate the aggregation result by using {@link AggregationOperator#aggregatorList}.
2727
*/
28-
@EqualsAndHashCode
28+
@EqualsAndHashCode(callSuper = false)
2929
@ToString
3030
public class AggregationOperator extends PhysicalPlan {
3131
@Getter

core/src/main/java/org/opensearch/sql/planner/physical/DedupeOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* DedupeOperator#dedupeList} The result order follow the input order.
2727
*/
2828
@Getter
29-
@EqualsAndHashCode
29+
@EqualsAndHashCode(callSuper = false)
3030
public class DedupeOperator extends PhysicalPlan {
3131
@Getter
3232
private final PhysicalPlan input;

core/src/main/java/org/opensearch/sql/planner/physical/FilterOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* The Filter operator only return the results that evaluated to true.
2222
* The NULL and MISSING are handled by the logic defined in {@link BinaryPredicateOperator}.
2323
*/
24-
@EqualsAndHashCode
24+
@EqualsAndHashCode(callSuper = false)
2525
@ToString
2626
@RequiredArgsConstructor
2727
public class FilterOperator extends PhysicalPlan {

core/src/main/java/org/opensearch/sql/planner/physical/LimitOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
@RequiredArgsConstructor
2929
@Getter
3030
@ToString
31-
@EqualsAndHashCode
31+
@EqualsAndHashCode(callSuper = false)
3232
public class LimitOperator extends PhysicalPlan {
3333
private final PhysicalPlan input;
3434
private final Integer limit;

core/src/main/java/org/opensearch/sql/planner/physical/ProjectOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Project the fields specified in {@link ProjectOperator#projectList} from input.
2727
*/
2828
@ToString
29-
@EqualsAndHashCode
29+
@EqualsAndHashCode(callSuper = false)
3030
@RequiredArgsConstructor
3131
public class ProjectOperator extends PhysicalPlan {
3232
@Getter

core/src/main/java/org/opensearch/sql/planner/physical/RareTopNOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* Calculate the rare result by using the {@link RareTopNOperator#fieldExprList}.
3434
*/
3535
@ToString
36-
@EqualsAndHashCode
36+
@EqualsAndHashCode(callSuper = false)
3737
public class RareTopNOperator extends PhysicalPlan {
3838

3939
@Getter

core/src/main/java/org/opensearch/sql/planner/physical/RemoveOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Remove the fields specified in {@link RemoveOperator#removeList} from input.
2929
*/
3030
@ToString
31-
@EqualsAndHashCode
31+
@EqualsAndHashCode(callSuper = false)
3232
public class RemoveOperator extends PhysicalPlan {
3333
@Getter
3434
private final PhysicalPlan input;

core/src/main/java/org/opensearch/sql/planner/physical/RenameOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* The mapping maintain the relation between source and target.
2929
* it means BindingTuple.resolve(target) = BindingTuple.resolve(source).
3030
*/
31-
@EqualsAndHashCode
31+
@EqualsAndHashCode(callSuper = false)
3232
@ToString
3333
public class RenameOperator extends PhysicalPlan {
3434
@Getter

core/src/main/java/org/opensearch/sql/planner/physical/SortOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* The count indicate how many sorted result should been return.
3333
*/
3434
@ToString
35-
@EqualsAndHashCode
35+
@EqualsAndHashCode(callSuper = false)
3636
public class SortOperator extends PhysicalPlan {
3737
@Getter
3838
private final PhysicalPlan input;

0 commit comments

Comments
 (0)