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
We need to find a way to make use of the schema because now the id struct field is serialized/encoded as a types::Value::String instead of Uuid or even Fixed(16), as defined in the schema.
The text was updated successfully, but these errors were encountered:
See
avro-rs/avro/src/schema.rs
Lines 6446 to 6482 in d6a1e4f
Here the test uses
The Avro Schema is available via
Comment::get_schema()
but it is not used atavro-rs/avro/src/writer.rs
Lines 551 to 555 in d6a1e4f
Serde
does not work with schemas.We need to find a way to make use of the schema because now the
id
struct field is serialized/encoded as atypes::Value::String
instead ofUuid
or evenFixed(16)
, as defined in the schema.The text was updated successfully, but these errors were encountered: