I'm trying to compile the Mail.avpr schema from the avro-rpc-quickstart
example using the c++ tools, and precompile fails with the following error:
"Failed to parse or compile schema: Schema is invalid, due to bad node of
type symbolic."
I even tried generating the avpr from an avdl, but precompile still fails
with the same error. Any idea what the problem might be?
Here's my avdl FYI:
@namespace("example.proto")
protocol Mail{
record Message {
string to;
string from;
string body;
}
string send(Message message);
}
Thanks!