Skip to content

Commit

Permalink
Implement DisplayWrapper#hashCode to fix SelectDistinct Behavior (#5281)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind authored and stanbrub committed May 17, 2024
1 parent 69378ea commit e29287a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,9 @@ public boolean equals(Object obj) {

return false;
}

@Override
public int hashCode() {
return displayString.hashCode();
}
}

0 comments on commit e29287a

Please sign in to comment.