Pedro Cardoso Silva created AVRO-2805:
-----------------------------------------

             Summary: Reflection-based schema not loading types 
                 Key: AVRO-2805
                 URL: https://issues.apache.org/jira/browse/AVRO-2805
             Project: Apache Avro
          Issue Type: Bug
          Components: java
    Affects Versions: 1.9.1
            Reporter: Pedro Cardoso Silva


Avro reflection is unable to generate a schema for the following definition:

{code:java} 
public class Definition {
    pubilc Map<String, Type>
}

// In a separate file
public enum Type {
  A,
  B,
  C
}
{code}

{code:java}
// Test code
Schema schema = ReflectData.get().getSchema(Definition.class)
{code}

Fails with: 
Undefined name: "FieldType"
org.apache.avro.SchemaParseException: Undefined name: "Type"



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to