You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, I need to store raw bytes in the Content field. However, when I store the file and read it, the value of the content is written as b'<[100]uint8 Value>' instead of the actual raw bytes. It appears that the library tries to obtain the string representation of the byte array instead of dumping the actual content.
How can I solve this issue?
The text was updated successfully, but these errors were encountered:
I want to store the following data structure in the Parquet file format:
Here, I need to store raw bytes in the
Content
field. However, when I store the file and read it, the value of the content is written asb'<[100]uint8 Value>'
instead of the actual raw bytes. It appears that the library tries to obtain the string representation of the byte array instead of dumping the actual content.How can I solve this issue?
The text was updated successfully, but these errors were encountered: