-
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
Add DELTA_LENGTH_BYTE_ARRAY encoder and decoder for Parquet #14590
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
a95259f
add delta length byte array encoder/decoder
etseidl 27dfcdd
change encoding in file
etseidl 73573f3
rename some things
etseidl b454b76
a few cleanups
etseidl 4821128
Merge remote-tracking branch 'origin/branch-24.02' into dlba_enc_dec
etseidl fb50fcb
finish merge of size statistics
etseidl 394fe81
Merge branch 'rapidsai:branch-24.02' into dlba_enc_dec
etseidl a2181bc
Merge remote-tracking branch 'origin/branch-24.02' into dlba_enc_dec
etseidl 07af187
add syncthreads
etseidl fae7388
Merge branch 'rapidsai:branch-24.02' into dlba_enc_dec
etseidl aa94791
Merge branch 'branch-24.02' into dlba_enc_dec
etseidl f806a48
Merge branch 'branch-24.02' into dlba_enc_dec
etseidl 080e89d
change unsupported encoding to 15
etseidl 0827fd3
Merge branch 'dlba_enc_dec' of github.com:etseidl/cudf into dlba_enc_dec
etseidl 7e9d752
Merge branch 'branch-24.02' into dlba_enc_dec
etseidl 8b0f277
pass random number genertor into data gen functions
etseidl 4bbbf63
implement suggestion from review
etseidl 901644d
implement suggestion from review
etseidl 0934708
remove __host__ decorator
etseidl ad42470
change skip_values_and_sum to run on a single warp
etseidl c552ffb
Merge branch 'branch-24.02' into dlba_enc_dec
etseidl ace5be3
implement suggestion from review
etseidl 3523a36
move delta char len calculation
etseidl c028f2a
a few cleanups
etseidl 4c2dc56
remove some outdated TODOs and superfluous threadfences
etseidl c07bea2
handle non-string byte arrays
etseidl 62f8b4a
parquet-mr does not like duplicate column names
etseidl 36478bf
Merge branch 'branch-24.02' into dlba_enc_dec
etseidl b4e6999
fix for writing all-null column
etseidl 385dce1
fix for reading single null row
etseidl edd3c13
Merge remote-tracking branch 'origin/branch-24.02' into dlba_enc_dec
etseidl 6a25a6a
finish merge
etseidl 0d0c95f
make sure header is written if all values are null
etseidl e0d8cf1
add extra delta tests
etseidl a65f512
change param name to match use
etseidl b77b9ee
Merge branch 'branch-24.02' into dlba_enc_dec
etseidl fc282fe
try 2 at consistent naming
etseidl 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
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.
Will this be a breaking change? It is changing from unsigned to signed.
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.
should not be user visible...results are cast elsewhere anyway