For unions in avro Idl something like below what would be the default values?
1. union {null, string} var = null;
2. union {string, null} = "xyz";
3. union {null, string} = "xyz";
4. union {null, string, array} = [];
My assumption is the default values would be always the first item in the union. Is my understand correct?