[
https://issues.apache.org/jira/browse/AVRO-3613?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17597809#comment-17597809
]
ASF subversion and git services commented on AVRO-3613:
-------------------------------------------------------
Commit 1841ff115d52727094998b80798d52210b8addb6 in avro's branch
refs/heads/master from Robert Yokota
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=1841ff115 ]
AVRO-3001 AVRO-3274 AVRO-3568 AVRO-3613: Add JSON encoder/decoder for C# (#1833)
* AVRO-3001 AVRO-3274: Add JSON encoder/decoder for C#
* Add more comments for public/protected members
* Make CodeQL happy
* Make CodeQL happy again
* Minor optimization
* Fix cosmetic issues
* Fix JsonEncoder.StartItem accessibility
* Minor doc fix
* Add fixes and test for JSON encoding/decoding logical types
* Fix fullname calculation for logical schemas
* Fix for AVRO-3613
* Fix for AVRO-3568
* Add union with record test
* Fix test
* Incorporate review feedback
* Incorporate review feedback
* More cleanup
* Revert previous cleanup in favor of recommended cleanup
* Incorporate more review feedback
* Incorporate latest review feedback
* Add more unit tests
* Simplify string constant
* Simplify string constant
* Simplify string constant
* Simplify string constant
Co-authored-by: Martin Grigorov <[email protected]>
> Unions cannot have more than one logical type in C#
> ---------------------------------------------------
>
> Key: AVRO-3613
> URL: https://issues.apache.org/jira/browse/AVRO-3613
> Project: Apache Avro
> Issue Type: Bug
> Components: csharp
> Reporter: Robert Yokota
> Assignee: Robert Yokota
> Priority: Major
> Fix For: 1.12.0
>
>
> Unions cannot have more than one logical type in C#.
> The following code fails:
> {code:java}
> Schema schema = Schema.Parse(
> "[\"null\",\n" +
> " { \"type\": \"int\", \"logicalType\": \"date\" },\n" +
> " { \"type\": \"long\", \"logicalType\": \"timestamp-millis\" }\n" +
> "]");{code}
>
> The error is
> {code:java}
> Avro.SchemaParseException : Duplicate type in union: logical at '[2]'{code}
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)