Skip to content

Commit

Permalink
physicalTopn.equal
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Jan 7, 2025
1 parent a539e22 commit 6d3e113
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ public boolean equals(Object o) {
return false;
}
PhysicalTopN<?> that = (PhysicalTopN<?>) o;
return limit == that.limit && offset == that.offset;
return limit == that.limit && offset == that.offset
&& this.phase == that.phase
&& Objects.equals(that.getOrderKeys(), getOrderKeys());
}

@Override
Expand Down

0 comments on commit 6d3e113

Please sign in to comment.