-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(arrow/compute): make is_nan dispatchable (#177)
Currently the `is_nan` compute kernel is a `MetaFunction` which cannot be dispatched via kernel dispatch making it only usable via calling it directly with `CallFunction`. By shifting it to be a proper function instead of a `MetaFunction` this improves its compatibility and makes it able to be dispatched and thus called through the substrait interface in the `exprs` package.
- Loading branch information
Showing
3 changed files
with
61 additions
and
34 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