You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"type": "record","name": "LongList","aliases": ["LinkedLongs"],// old name for this"fields" : [{"name": "value","type": "long"},// each element has a long{"name": "next","type": ["null","LongList"]}// optional next element]}
is not supported in the current implementation, as "LongList" is a defined named type, but we dont deserialize it.
The text was updated successfully, but these errors were encountered:
As defined in the specification under Schemas https://avro.apache.org/docs/1.9.0/spec.html#schemas
Using already defined names, should be supported.
This means that
is not supported in the current implementation, as "LongList" is a defined named type, but we dont deserialize it.
The text was updated successfully, but these errors were encountered: