-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix parquet statistics for ListingTable and Utf8View with schema_force_string_view
, rename config option to schema_force_view_types
#12232
Merged
alamb
merged 16 commits into
apache:main
from
influxdata:12123/view-type-on-parquet-read
Sep 10, 2024
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a20897a
chore: move schema_force_string_view upwards to be listed with other …
wiedld cb425b3
refactor(12123): have file schema be merged on view types with table …
wiedld ad7898b
test(12123): test for with, and without schema_force_string_view
wiedld 0992ce1
test(12123): demonstrate current upstream failure when reading page s…
wiedld e697cdb
chore(12123): update config.md
wiedld 57a9543
chore: cleanup
wiedld 8a19936
chore(12123): temporarily remove test until next arrow release
wiedld 3744e89
Merge branch 'main' into 12123/view-type-on-parquet-read
wiedld 68cc745
Merge branch 'main' into 12123/view-type-on-parquet-read
wiedld 04f471b
chore(12123): rename all variables to force_view_types
wiedld 34c9ae6
refactor(12123): make interface ParquetFormat::with_force_view_types …
wiedld 1a84734
chore(12123): rename helper method which coerces the schema (not merg…
wiedld 604ef1e
chore(12123): add dosc to ParquetFormat to clarify exactly how the vi…
wiedld 64b62c9
test(12123): cleanup tests to be more explicit with ForceViews enum
wiedld 02036fb
test(12123): update tests to pass now that latest arrow-rs release is in
wiedld b5c725f
fix: use proper naming on benchmark
wiedld 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.
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.
is this change so that all the reading configuration values are before the writing ones?
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 reviewing / considering this PR, I wonder if we should (in a follow on PR) rename this config flag to be
schema_force_view_types
as it also applies to binary columns 🤔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.
Ah...I just did it all in this PR because it felt weird to have 2 naming conventions at once. Hopefully that's ok. 😅