forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix NaN handling for in-predicate (facebookincubator#10115)
Summary: Pull Request resolved: facebookincubator#10115 Ensure NaN values of different binary representation for floating point types are considered as equal. Summary of changes: - Primitive type Input: NaN of different binary representations are denormalized to the same representation before adding to the in-list and before being compared. - Complex Type input: Uses a set that employs hash and equality functions via BaseVector that have been fixed in facebookincubator#9963 to handle NaN values. Reviewed By: kagamiori Differential Revision: D58301120
- Loading branch information
1 parent
c97e7fc
commit 4010a84
Showing
2 changed files
with
131 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters