Brian Lachniet created AVRO-2606:
------------------------------------
Summary: C# Specific API doesn't handle matrices of custom types
Key: AVRO-2606
URL: https://issues.apache.org/jira/browse/AVRO-2606
Project: Apache Avro
Issue Type: Bug
Components: csharp
Affects Versions: 1.9.1
Reporter: Brian Lachniet
Assignee: Brian Lachniet
Fix For: 1.9.2
The Specific API in the C# bindings does not property handle matrices of custom
types. For example, it does not handle an array of arrays of {{User}} (where
{{User}} is a record type we defined in our schema).
This was originally identified and addressed in the Confluent fork here:
https://github.com/confluentinc/avro/pull/11.
This is the schema that demonstrates this issue:
https://gist.github.com/mhowlett/1d7518c23c8f5462a6d1ebbe81cbffb6.
Specifically, {{deletes.rows}}
([here|https://gist.github.com/mhowlett/1d7518c23c8f5462a6d1ebbe81cbffb6#file-gistfile1-txt-L387])
is the array of arrays of {{Column}} that throws an exception like the
following:
{code}
Unable to find type
System.Collections.Generic.IList`1[io.confluent.test.Column] in all loaded
assemblies in field rows in field inserts
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)