-
Notifications
You must be signed in to change notification settings - Fork 163
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 array for arrow #339
Comments
Hi @wonb168 , thanks for opening the issue. Unfortunately, we currently do not support list type in arrow. Will add this to our todo list. |
but why I use pandas's read_sql, and then change to arrow is OK? |
If the destination is set to arrow, connectorx will directly write the result into arrow instead of writing to pandas first and convert to arrow. Currently array type is supported for pandas in connectorx but not for arrow/arrow2. |
Hi @wonb168 , we have added array support in the newest alpha version for |
array column like: {1,2,3}
df=cx.read_sql(con_pg, sql,return_type='arrow2')
RuntimeError: No conversion rule from Int4Array(true) to connectorx::destinations::arrow::typesystem::ArrowTypeSystem.
The text was updated successfully, but these errors were encountered: