-
Notifications
You must be signed in to change notification settings - Fork 912
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
Detect and report errors in Parquet header parsing #14237
Merged
rapids-bot
merged 33 commits into
rapidsai:branch-23.12
from
etseidl:detect_header_overrun
Oct 20, 2023
Merged
Changes from 6 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
6457f03
remove unneeded cruft from thrift parser
etseidl 854916b
report errors parsing page headers
etseidl 34ca06a
Merge branch 'rapidsai:branch-23.12' into detect_header_overrun
etseidl e50515a
add test
etseidl 7486d8b
Merge branch 'detect_header_overrun' of github.com:etseidl/cudf into …
etseidl 74e0867
Merge branch 'branch-23.12' into detect_header_overrun
etseidl 7a4d1cb
implement suggestion from review
etseidl 2f299a0
add some braces
etseidl adc5f2c
check for errors before checking returned value
etseidl 0f086a8
create a shared error scalar
etseidl 5573c64
rework error stuff some to pass python tests
etseidl 3ec7225
Merge branch 'branch-23.12' into detect_header_overrun
etseidl 50e4efc
use set_error
etseidl 62a1f85
switch to new error reporting
etseidl 50314f3
detect unsupported page encodings in kernel now
etseidl f75884c
get rid of global error and instead wrap it
etseidl bfa71b0
test error is not 0 before setting it
etseidl 2cb87d4
Merge branch 'branch-23.12' into detect_header_overrun
etseidl 7b67a1d
error vector does not need to be shared
etseidl 9b943be
add docstring
etseidl d7b387e
Apply suggestions from code review
etseidl 69bf46b
Merge branch 'branch-23.12' into detect_header_overrun
vuule fb0e79b
Merge remote-tracking branch 'origin/branch-23.12' into detect_header…
etseidl 3de8283
Merge branch 'branch-23.12' into detect_header_overrun
etseidl ae2d00c
Merge branch 'branch-23.12' into detect_header_overrun
etseidl 92eb08d
implement change from review
etseidl e145ecd
a few more review suggestions
etseidl be49938
Merge branch 'detect_header_overrun' of github.com:etseidl/cudf into …
etseidl b141c6c
Merge remote-tracking branch 'origin/branch-23.12' into detect_header…
etseidl 12c797c
Apply suggestions from code review
etseidl be05dbb
Merge remote-tracking branch 'origin/branch-23.12' into detect_header…
etseidl 733efbd
Merge branch 'branch-23.12' into detect_header_overrun
vuule 0a01cef
Merge branch 'branch-23.12' into detect_header_overrun
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
Binary file not shown.
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
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.
While refactoring this, let's move to use
cudf::detail::warp_size
instead of hardcoding32
.