You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Harshal Dalvi (JIRA)" <ji...@apache.org> on 2018/05/30 23:10:00 UTC

[jira] [Comment Edited] (AVRO-2174) Enums with spaces are accepted

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

Harshal Dalvi edited comment on AVRO-2174 at 5/30/18 11:09 PM:
---------------------------------------------------------------

The above ticket is only for valid name validation. The case in question here is the python avro library allows spaces ` ` in enum names which does not conform to [the avro spec|[https://avro.apache.org/docs/1.8.2/spec.html#Enums]]. This is invalid and should be fixed in the python implementation.


was (Author: dharshal):
The above ticket is only for valid name validation. The case in question here is the python avro library allows spaces ` ` in enum names which does not conform to [the avro spec|[https://avro.apache.org/docs/1.8.2/spec.html#Enums]|https://avro.apache.org/docs/1.8.2/spec.html#Enums].]. This is invalid and should be fixed in the python implementation.

> Enums with spaces are accepted
> ------------------------------
>
>                 Key: AVRO-2174
>                 URL: https://issues.apache.org/jira/browse/AVRO-2174
>             Project: Avro
>          Issue Type: Bug
>          Components: python
>    Affects Versions: 1.8.2
>            Reporter: Harshal Dalvi
>            Priority: Major
>
> The Avro spec does not allow for spaces *' '*  in enums. However, Python Avro does not error out or reject enums with spaces in them.
> This is an example of a part of a schema which was accepted by the python package:
> {code}
> {
> "default": null,
> "type": [
> "null",
> {
> "symbols": [
> "top left",
> "top center",
> "top right",
> "center left",
> "center center",
> "center right",
> "bottom left",
> "bottom center",
> "bottom right"
> ],
> "type": "enum",
> "namespace": "",
> "name": "postion_enum"
> }
> {code}
>  
> The same schema, when read by the Java library errors out at *top left* as expected:
> {code}
> Caused by: org.shaded.apache.avro.SchemaParseException: Illegal character in: top left
>  at org.shaded.apache.avro.Schema.validateName(Schema.java:1151)
>  at org.shaded.apache.avro.Schema.access$200(Schema.java:81)
>  at org.shaded.apache.avro.Schema$EnumSchema.<init>(Schema.java:749)
>  at org.shaded.apache.avro.Schema.parse(Schema.java:1300)
>  at org.shaded.apache.avro.Schema.parse(Schema.java:1340)
>  at org.shaded.apache.avro.Schema.parse(Schema.java:1269)
>  at org.shaded.apache.avro.Schema$Parser.parse(Schema.java:1032)
>  at org.shaded.apache.avro.Schema$Parser.parse(Schema.java:1020)
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)