-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
ARROW-17450 : [C++][Parquet] Support RLE decode for boolean datatype #14147
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
e5178ba
Add fixes for RLE encoding of Boolean column type
sfc-gh-nthimmegowda 01c9ea1
Address comments
sfc-gh-nthimmegowda fcb2fa5
Fix format
sfc-gh-nthimmegowda 3f6782e
Update cpp/src/parquet/encoding.cc
sfc-gh-nthimmegowda 8a29359
Update cpp/src/parquet/encoding.cc
sfc-gh-nthimmegowda f9907ce
Address comments
sfc-gh-nthimmegowda f9ab39d
Run make format lint lint_cpp_cli
55956dc
Update Test
sfc-gh-nthimmegowda 680b06a
Run make format
bd21c66
Add bool to list of data types accepted for little-big endian conversion
sfc-gh-nthimmegowda d13847e
Run make format
4ee9521
Restructure BooleanDecoder and add tests with update rle_boolean enco…
sfc-gh-nthimmegowda 59ee637
Format code
77d4bfa
Update submodule
sfc-gh-nthimmegowda b88a386
Fix ASAN test failure
sfc-gh-nthimmegowda 73588b1
Fix ASAN failure
sfc-gh-nthimmegowda 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
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.
Hi @kou . Why is this public function removed? This breaks the downstream where is depending on it.
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.
See #14147 (comment) .
Could you share your downstream code that uses this?
@sfc-gh-nthimmegowda Can we keep backward compatibility for this?
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.
@kou I believe we can. Setting out a PR later today for this.
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.
It is pretty straight-forward. The downstream code can use a vector of uint8_t instead of bool to hold a vector of decoded boolean values.
@sfc-gh-nthimmegowda Thanks for keeping backward compatibility.
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.
@wgtmac
Can you share the code pointer , abstract is fine.
Because this method / function was an abstract function which was overriden, just wondering if you called in base class or called directly via
PlainBooleanEncoder
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 have used the template TypedDecoder class which is created by MakeTypedDecoder function defined here: https://github.com/apache/arrow/blob/master/cpp/src/parquet/encoding.h#L447. Then it is casted to BooleanDecoder to use the uint8_t variant.