-
Notifications
You must be signed in to change notification settings - Fork 6
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
Problem writing string columns to avro file #17
Comments
It appears that in the method "tables.writewithschema" only the first row is assessed in assigning the size of the buffer Vector, leading to the above error. altering to the following, where the maximum row size is leveraged for the buffer Vector, appears to address the issue.
I've added a PR for the above. |
Thanh you! |
Sorry to @ you @quinnj but would you mind reviewing the associated PR for the above - its self contained. Your fantastic work on this has potentially been under - utilised; and I believe the PR makes Avro usable "out of the box" for Julia. |
When I try to convert an Arrow file to Avro using this code:
I get the following error whenever the input file contains a string column, e.g.
Whereas this version does not produce this error:
Output:
How do I resolve this problem if I need a string column in my output file?
The text was updated successfully, but these errors were encountered: