-
Notifications
You must be signed in to change notification settings - Fork 19
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
Support UUID type #46
Labels
enhancement
New feature or request
Comments
We use arrow, in memory columnar format, as intermediate format. UUID arrow arrays are not yet supported to be written into parquet file. But there is some PR to enable extension type concept in arrow spec. After extension types are supported, we can natively write uuid and json to parquet. (they are serialized as text for now) |
aykut-bozkurt
added a commit
that referenced
this issue
Mar 6, 2025
Arrow supports extension types with new major version 54. They can correctly convert uuid and json arrow arrays from/to parquet. This PR uses this fact to natively read/write these types from/to parquet to/from postgres. Closes #46.
aykut-bozkurt
added a commit
that referenced
this issue
Mar 7, 2025
Arrow supports extension types with new major version 54. They can correctly convert uuid and json arrow arrays from/to parquet. This PR uses this fact to natively read/write these types from/to parquet to/from postgres. Closes #46.
aykut-bozkurt
added a commit
that referenced
this issue
Mar 11, 2025
Arrow supports extension types with new major version 54. They can correctly convert uuid and json arrow arrays from/to parquet. This PR uses this fact to natively read/write these types from/to parquet to/from postgres. Closes #46.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be nice to also allow supporting the UUID type as specified here (for interoperability):
The text was updated successfully, but these errors were encountered: