-
Notifications
You must be signed in to change notification settings - Fork 406
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(python): fixed large_dtype to schema convert #2635
Conversation
@rtyler facing the same issue with |
@chitralverma what exactly are you facing? |
@ion-elgreco
Here delta_storage_options is this -
The above code works when trying to run this on local without mentioning storage_options. When we try to run this on aws, we get this error message -
Our delta table schema is like this below. Which contain columns of type "List" -
|
@hitesh1997 please have a look at this issue: #2851 |
Hi @ion-elgreco, The issue was fixed by downgrading to deltalake==0.18.2 from 0.19.1 |
@hitesh1997 0.18.2 just buries the issue by always downcasting to normal types, you could do the same thing in 0.20 already by manually providing large_dtypes = False |
Description
added large_dtype to schema convert
closes #2374
Related Issue(s)
Documentation