On Wed, Nov 26, 2014 at 2:33 PM, svante karlsson <[email protected]> wrote: > I'm not sure that works for avro where null is used for an optional field.
It should work. If it doesn't, it's a bug. For example:
record Foo {
union {string, null} name = "default";
}
record Bar {
union {Foo, null} foo = {"name" = "non-default"};
}
Default values in IDL are JSON format.
Doug
