tustvold commented on issue #4945: URL: https://github.com/apache/arrow-rs/issues/4945#issuecomment-1766520501
So if I understand correctly you are reading binary data from a parquet file and are trying to write it to JSON? Unfortunately JSON does not define a mechanism to transport binary data, you have two common options: * If the binary data is actually UTF-8 you could cast the column to a StringArray * You could use a crate like base64 to base64 encode the binary data prior to writing it -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
