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
but I got a panic on row_format.rs on line 151: panic!("invalid format character '{}'", a);
There seems to be more to extending the formats stored than just implementing ToRecord/FromRecord. Is there an easier way to do this? Or should I just use 's' with base64 encoding?
The text was updated successfully, but these errors were encountered:
I conducted an experiment to see if compressing a base64 string with LZ4 results in the same size as compressing the same data when represented in binary, and it's about 30% more.
So, yes, there's a size benefit of not using base64, and converting to base64 probably has cost as well.
Is there a way to store a byte array of a specific size?
I'm asking because I wanted to implement the ToRecord trait for my own struct Limb:
but I got a panic on
row_format.rs
on line 151:panic!("invalid format character '{}'", a);
There seems to be more to extending the formats stored than just implementing ToRecord/FromRecord. Is there an easier way to do this? Or should I just use 's' with base64 encoding?
The text was updated successfully, but these errors were encountered: