Closed VankaTaganai closed 1 year ago
It's not possible, and goes against the avro guidelines.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hi, I've got a question about union order in option serialization. As I understand, now null type is always first in Avro Union. Is it possible to change order of null and value in schema generator?
Option[String] -> ["null", "string"]
toOption[String] -> ["string", "null"]
I've tried to find out how to solve this problem but didn't find an example. Can you help me with that?