You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/04/19 18:27:35 UTC

[avro] branch master updated (cf0cb14de -> 1c8447268)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


    from cf0cb14de AVRO-2883: Fix namespace mapping (#1610)
     add 1c8447268 AVRO-2211: SchemaBuilder equivalent or other means of schema creation (#1597)

No new revisions were added by this update.

Summary of changes:
 .../src/apache/main/AssemblyInfo.cs}               |  18 +-
 .../Schema/Aliases.cs}                             |  27 +--
 lang/csharp/src/apache/main/Schema/ArraySchema.cs  |  22 +-
 lang/csharp/src/apache/main/Schema/EnumSchema.cs   |  75 +++++-
 lang/csharp/src/apache/main/Schema/Field.cs        |  34 ++-
 lang/csharp/src/apache/main/Schema/FixedSchema.cs  |  14 ++
 lang/csharp/src/apache/main/Schema/MapSchema.cs    |  12 +-
 .../src/apache/main/Schema/PrimitiveSchema.cs      |  16 +-
 lang/csharp/src/apache/main/Schema/RecordSchema.cs | 144 +++++++++++-
 lang/csharp/src/apache/main/Schema/UnionSchema.cs  |  37 ++-
 lang/csharp/src/apache/test/Avro.test.csproj       |   2 +
 lang/csharp/src/apache/test/Schema/AliasesTests.cs |  49 ++++
 lang/csharp/src/apache/test/Schema/SchemaTests.cs  | 259 +++++++++++++++++++--
 13 files changed, 635 insertions(+), 74 deletions(-)
 copy lang/{java/avro/src/main/java/org/apache/avro/AvroRuntimeException.java => csharp/src/apache/main/AssemblyInfo.cs} (66%)
 copy lang/csharp/src/apache/{test/Interop/InteropDataConstants.cs => main/Schema/Aliases.cs} (60%)
 create mode 100644 lang/csharp/src/apache/test/Schema/AliasesTests.cs