[
https://issues.apache.org/jira/browse/AVRO-681?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Doug Cutting updated AVRO-681:
------------------------------
Resolution: Fixed
Fix Version/s: 1.5.0
Assignee: Jingguo Yao
Hadoop Flags: [Reviewed]
Status: Resolved (was: Patch Available)
I just committed this. Thanks, Jingguo.
> invalid code in IDL doc
> -----------------------
>
> Key: AVRO-681
> URL: https://issues.apache.org/jira/browse/AVRO-681
> Project: Avro
> Issue Type: Bug
> Components: doc
> Affects Versions: 1.4.0
> Reporter: Jingguo Yao
> Assignee: Jingguo Yao
> Priority: Minor
> Fix For: 1.5.0
>
> Attachments: AVRO-681.patch
>
>
> The following IDL code is invalid:
> record MyRecord {
> @java-class("java.util.ArrayList") array string myStrings;
> }
> First, "-" can't be used in a annotation name. Second, "array string" is the
> wrong way to denote array. Valid code should be:
> record MyRecord {
> @java_class("java.util.ArrayList") array<string> myStrings;
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.