Kriskras99 commented on issue #368:
URL: https://github.com/apache/avro-rs/issues/368#issuecomment-3661621397
If we're going to add custom attributes to all variants, it might be wise to
split them from the Schema enum. So maybe something like this:
```rust
struct Schema {
kind: SchemaEnum // what's currently Schema
attributes: HashMap<String, Value>
}
```
Although how would we handle decimal and uuid in that case? Put the
attributes in the inner type or in the logical type?
--
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]