-
Notifications
You must be signed in to change notification settings - Fork 4.2k
ARROW-10606: [C++] Implement Decimal256 casts #9751
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
Closed
Closed
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
503ba91
ARROW-10606: [C++] Implement Decimal256 to int cast
lidavidm 66a2896
ARROW-10606: [C++] Implement Decimal256 to Decimal256 cast
lidavidm 9346530
ARROW-10606: [C++] Implement Decimal128 to Decimal256 cast
lidavidm 4efe051
ARROW-10606: [C++] Implement Decimal256 to Decimal128 cast
lidavidm 3ab4ef6
ARROW-10606: [C++] Implement Decimal256 to floating cast
lidavidm 961e038
ARROW-10606: [C++] Implement Decimal256::FromReal (I think)
lidavidm 2d030cf
ARROW-10606: [C++] Implement floating to Decimal256 cast
lidavidm 1b0b925
Work around Windows test failure
lidavidm cf687b9
Fix MSVC warning
lidavidm bda5b94
Fix Windows/R treating INFINITY as double
lidavidm 7e8e99d
Use appropriate GTest assert for floating type
lidavidm 38cf4e0
Fix input/output types
lidavidm 5066397
Fold all decimal<->decimal casts into the same case
lidavidm 721abde
Address minor nits in decimal256 impl
lidavidm 41d739b
Clean up duplication in tests
lidavidm 397295b
Remove needless comment
lidavidm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 don't think this comment is still useful. These are just the same casts as for
Decimal128.