-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Adding `is_null`, `is_not_null`, and `is_nan` functions and tests to the Compute implementations for Go. This also removes the `-ffast-math` option from the SIMD optimized compiler Makefile so that our comparisons properly handle `NaN` values (`-ffast-math` assumes that no values are `NaN` and removes the checks). `is_nan` can be easily implemented for float and double values by dispatching to `A != A`. Tests are also added for the new functions. Ultimately the driving force behind this is as these are necessary for implementing scanning reads in iceberg-go --------- Co-authored-by: Sutou Kouhei <kou@clear-code.com>
- Loading branch information
Showing
21 changed files
with
58,373 additions
and
52,334 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
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
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
Oops, something went wrong.