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
{{ message }}
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.
I was attempting to serialize an Avro record containing a "map" with record-type values, and encountered this error:
JsonMappingException: Not an array: <redacted>
... I see that in Issue #6, deserializing the "map" type appears to call getElementType(). In MapWriteContext.java, getElementType() is also called, like so:
Hello!
I was attempting to serialize an Avro record containing a "map" with record-type values, and encountered this error:
JsonMappingException: Not an array: <redacted>
... I see that in Issue #6, deserializing the "map" type appears to call
getElementType()
. In MapWriteContext.java,getElementType()
is also called, like so:Shouldn't this instead use
_schema.getValueType()
?The text was updated successfully, but these errors were encountered: