We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current type support is partial, here is a list about the unsupported types:
unsupported_types = [ pa.timestamp("us"), pa.timestamp("us", tz="UTC"), pa.timestamp("us", tz="Europe/Paris"), pa.duration("s"), pa.decimal128(19, 4), pa.decimal256(76, 38), pa.binary(10), pa.list_(pa.int32(), 2), pa.map_(pa.string(), pa.int32()), pa.union( [pa.field("a", pa.binary(10)), pa.field("b", pa.string())], mode=pa.lib.UnionMode_DENSE, ), pa.union( [pa.field("a", pa.binary(10)), pa.field("b", pa.string())], mode=pa.lib.UnionMode_DENSE, type_codes=[4, 8], ), pa.union( [pa.field("a", pa.binary(10)), pa.field("b", pa.string())], mode=pa.lib.UnionMode_SPARSE, ), pa.union( [ pa.field("a", pa.binary(10), nullable=False), pa.field("b", pa.string()), ], mode=pa.lib.UnionMode_SPARSE, ), ]
For more context see https://github.com/apache/arrow-rs/pull/439/files#r653683238
The text was updated successfully, but these errors were encountered:
Timestamp and decimal128 is added here: #453
Sorry, something went wrong.
Thanks @alippai for the heads-up! We can incrementally update this ticket as new types get implemented.
Successfully merging a pull request may close this issue.
The current type support is partial, here is a list about the unsupported types:
For more context see https://github.com/apache/arrow-rs/pull/439/files#r653683238
The text was updated successfully, but these errors were encountered: