Skip to content

Commit

Permalink
Implement DisplayWrapper#hashCode to fix SelectDistinct Behavior (dee…
Browse files Browse the repository at this point in the history
  • Loading branch information
nbauernfeind committed May 16, 2024
1 parent 577b4d4 commit dbe2e7a
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 dbe2e7a

Please sign in to comment.