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
Right now we expect to pass in the actual string:
schema = Schema( NestedField(1, 'foo', StringType()) )
I think it would be nice to also allow strings:
schema = Schema( NestedField(1, 'foo', 'string') )
At the same time, we should reject complex types (list/map/struct).
list/map/struct
The text was updated successfully, but these errors were encountered:
'string' here should match the literal in the PrimitiveType
'string'
iceberg-python/pyiceberg/types.py
Line 765 in 778db75
Sorry, something went wrong.
NestedField
@Fokko I made an attempt to submit a PR.
4b15fb6
Successfully merging a pull request may close this issue.
Feature Request / Improvement
Right now we expect to pass in the actual string:
I think it would be nice to also allow strings:
At the same time, we should reject complex types (
list/map/struct
).The text was updated successfully, but these errors were encountered: