arrow2 icon indicating copy to clipboard operation
arrow2 copied to clipboard

Avro maps are unsupported

Open ayax79 opened this issue 1 year ago • 0 comments

I hit this when working with a schema that defines the following:

    {
      "name": "metadata",
      "type": "map",
      "values": "string",
      "doc": "List of metadata items."
    }

From io/avro/read/schema: 85

 AvroSchema::Map(_) => todo!("Avro maps are mapped to MapArrays"),

It looks like this was last touched by @jorgecarleitao by 10/2021.

I can take a look at implementing it.. Are there any gotchas I should be aware of?

ayax79 avatar Aug 22 '23 00:08 ayax79