Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4.3k
GH-41336: [C++][Compute] Fix case_when kernel dispatch for decimals with different precisions and scales#47479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -356,11 +356,11 @@ class ARROW_EXPORT MatchConstraint { | ||
| /// \brief Return true if the input types satisfy the constraint. | ||
| virtual bool Matches(const std::vector<TypeHolder>& types) const = 0; | ||
| }; | ||
| /// \brief Convenience function to create a MatchConstraint from a match function. | ||
| ARROW_EXPORT std::shared_ptr<MatchConstraint> MakeConstraint( | ||
| std::function<bool(const std::vector<TypeHolder>&)> matches); | ||
| /// \brief Convenience function to create a MatchConstraint from a match function. | ||
| static std::shared_ptr<MatchConstraint> Make( | ||
ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not really related to the issue. Just a small refinement. | ||
| std::function<bool(const std::vector<TypeHolder>&)> matches); | ||
| }; | ||
| /// \brief Constraint that all input types are decimal types and have the same scale. | ||
| ARROW_EXPORT std::shared_ptr<MatchConstraint> DecimalsHaveSameScale(); | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm excited 🤩