-
Notifications
You must be signed in to change notification settings - Fork 915
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
Pick smallest decimal type with required precision in ORC reader #9775
Merged
rapids-bot
merged 19 commits into
rapidsai:branch-22.02
from
vuule:bug-dec128-from-precision
Dec 8, 2021
+71
−41
Merged
Changes from 15 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
d1b09bc
read as dec128 when precision > 18 instead of throwing
vuule 3065bac
update tests to match the new behavior
vuule c5966a3
Merge branch 'branch-22.02' of https://github.com/rapidsai/cudf into …
vuule 1fb2164
Merge branch 'branch-22.02' of https://github.com/rapidsai/cudf into …
vuule 761ed54
decode as decimal32
vuule 6e11f75
read as dec32 when possible; update tests; disable dec128 from python
vuule 41ac21c
Merge branch 'branch-22.02' of https://github.com/rapidsai/cudf into …
vuule 7df6e76
set scale for decimal32
vuule fe03e08
adjust Java test
vuule b98b4a8
java fix try 2
vuule 1869255
Remove deprecated methods from Java Table class
jlowe 509a153
Merge branch 'branch-22.02' of https://github.com/rapidsai/cudf into …
vuule fd1c6da
Merge commit 'refs/pull/9853/head' of https://github.com/rapidsai/cud…
vuule d56b9b9
Merge branch 'bug-dec128-from-precision' of https://github.com/vuule/…
vuule b6c9d7b
revert Java test changes
vuule 58af480
clean up
vuule 92c689e
Merge branch 'branch-22.02' of https://github.com/rapidsai/cudf into …
vuule a21bff4
clean up initialization
vuule 349d4e2
stylin'
vuule 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 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
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.
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.
Inconsistency in what is initialized and how things are initialized here. Two
bool
members above are initialized to true using=
. Thisbool
is not initialized.data_type
is initialized using{}
. Suggest adding initialization for everything and doing them all the same way.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.
Done, only left the vectors without "visible" initialization.