Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
Initially reported at: https://github.com/flavray/avro-rs/issues/47
Trying to validate and write a record from the following struct:
#[derive(Deserialize, Serialize)]
pub struct MyRecord {
b: String,
a: i64,
}
using this schema:
{
"type": "record",
"name": "my_record",
"fields": [
{"name": "a", "type": "long"},
{"name": "b", "type": "string"},
]
}
fails because the order of the fields is not the same.
Attachments
Issue Links
- links to