You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2014/03/13 19:35:52 UTC

[jira] [Commented] (AVRO-1473) Nested schema reference with empty namespace cannot be parsed

    [ https://issues.apache.org/jira/browse/AVRO-1473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13933849#comment-13933849 ] 

ASF subversion and git services commented on AVRO-1473:
-------------------------------------------------------

Commit 1577275 from [~cutting] in branch 'avro/trunk'
[ https://svn.apache.org/r1577275 ]

AVRO-1473. Java: Fix references to names in the empty namespace.  Contributed by Gabriel Reid.

> Nested schema reference with empty namespace cannot be parsed
> -------------------------------------------------------------
>
>                 Key: AVRO-1473
>                 URL: https://issues.apache.org/jira/browse/AVRO-1473
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>            Reporter: Gabriel Reid
>         Attachments: AVRO-1473.patch
>
>
> Related to AVRO-1295, a reference to a nested named schema with an empty namespace cannot be parsed. An example of such a schema is as follows:
> {code}
> {
>   "type" : "record",
>   "name" : "Outer",
>   "namespace" : "space",
>   "fields" : [ {
>     "name" : "f1",
>     "type" : {
>       "type" : "record",
>       "name" : "Inner",
>       "namespace" : "",
>       "fields" : [ ]
>     }
>   }, {
>     "name" : "f2",
>     "type" : "Inner"
>   } ]
> }
> {code}
> Attempting to parse this results in the following exception:
> org.apache.avro.SchemaParseException: "Inner" is not a defined name. The type of the "f2" field must be a defined name or a \{"type": ...\} expression.
> The issue seems to be that the lookup for the name "Inner" is done with the namspace of the encoding record, and not with the empty namespace for this case.



--
This message was sent by Atlassian JIRA
(v6.2#6252)