Kriskras99 opened a new issue, #508:
URL: https://github.com/apache/avro-rs/issues/508

   As mentioned by @KitFieldhouse in 
https://github.com/apache/avro-rs/issues/476#issuecomment-4009905613 this test 
should pass:
   
   ```rust
   #[test]
   fn avro_rs_xxx_allow_overriding_type_names() -> TestResult {
       let schemas = Schema::parse_list([
       r#"{
           "type": "record",
           "name": "fixed",
           "fields": [{
               "name": "foo",
               "type": "string"
           }]
       }"#,
       r#"{
           "type": "record",
           "name": "Spam",
           "fields": [{
               "name": "bar",
               "type": "fixed"
           }]
       }"#
       ])?;
   
       Ok(())
   }
   ```


-- 
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]

Reply via email to