-
Notifications
You must be signed in to change notification settings - Fork 601
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
feat: support read_parquet
/read_csv
for most backends
#9448
Comments
If |
read_parquet
/read_csv
for most backendsread_parquet
/read_csv
for most backends
HI @jcrist I could take this one. Will do it one by one. Plan to add |
Any updates on this one? |
Currently we only support
read_parquet
for backends that have native support (likeduckdb
). In contrast, we supportto_parquet
for all backends, falling back to a commonpyarrow
implementation if a backend doesn't natively support it.To provide more uniform feature coverage, we could write an equivalent common
pyarrow
(or other) implementation of our IO input methods (read_parquet
/read_csv
/...) that backends likepostgres
could fall back on.The text was updated successfully, but these errors were encountered: