Commits


Oscar Westra van Holthe - Kind authored and GitHub committed 64267e1f4e5
AVRO-3217: Allow any identifier as annotation name (#1414) A field schema can be annotated with the property `avro.java.string`: { "name": "fieldName", "type": { "type": "string", "avro.java.string": "String" } } The corresponding IDL is: @avro.java.`string`("String") string fieldName; The IDL parser fails on the `. This change fixes that.