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.
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
Proof-of-concept Parquet GEOMETRY logical type implementation #43977
base: main
Are you sure you want to change the base?
Proof-of-concept Parquet GEOMETRY logical type implementation #43977
Changes from 49 commits
4a4ebc9
6f4e4b7
6acb2f2
6ff5855
0ac5d84
8a80ac7
f330997
b34b1c2
7e9f9b2
6a9ac3a
a22908f
dcc083a
9acc840
e18412c
76b3f59
fc77ff2
21f11a1
6bbce5c
bb41b06
88a42f5
3798ef1
ccbd616
3752f83
2ff6078
79e4715
4444757
176c997
1de193e
d2f8157
b525e84
6f0500e
c052ae0
3c6b222
f6ae9ae
1c9523b
5a50790
51e4ab8
c40c04e
e89962f
fb134d3
2f4329e
1db855f
ad92bb6
f782e30
9813f48
c56133c
174e1e1
bd0e2ad
1521bac
572e865
6c322d5
cd43ba5
33803bc
31a70c5
7dfbf4b
5d8ab77
ae5926f
672f19c
26ba162
fe8a3e5
ba80f3e
9aca79d
da55a55
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
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 we just pretend geometry type is a binary type? Then we don't have to change any line here.
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.
This is because the sort order of geometry is unknown, so I have to special case the handling of statistics generation for geometry. This nasty workaround happens in lots of places so we definitely have to make it cleaner.
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.
We didn't add this to the spec yet so it is still using the default column order. That's why there is a comment saying it is
undefined
.