Hi All, I’m seeing an issue with ReflectDatumWriter when the enum implements methods as below:
enum TestEnum {
V{
@Override
public boolean is_V(){
return true;
}
}
K{
@Override
public boolean is_K(){
return true;
}
}
public boolean is_V(){
return false;
}
public boolean is_K(){
return false;
}
}
This type of enums are failing with SchemaParseException: Empty name. Is there
any work around or a fix available, appreciate the help in advance.
Thanks,
Swamy
