[jira] [Updated] (AVRO-2157) IDL compiler won't accept the word "schema" in namespace-qualified type references

2018-03-14 Thread Doug Cutting (JIRA)

 [ 
https://issues.apache.org/jira/browse/AVRO-2157?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Doug Cutting updated AVRO-2157:
---
   Resolution: Fixed
Fix Version/s: 1.9.0
   Status: Resolved  (was: Patch Available)

I committed this.  Thanks, Max!

> IDL compiler won't accept the word "schema" in namespace-qualified type 
> references
> --
>
> Key: AVRO-2157
> URL: https://issues.apache.org/jira/browse/AVRO-2157
> Project: Avro
>  Issue Type: Bug
>  Components: java
>Affects Versions: 1.8.1, 1.8.2
> Environment: I have produced the error in Ubuntu 16.04, with Java 
> 1.8.0_151, using both the avro-maven-plugin, as well as by modifying the test 
> files in the apache/avro/lang/compiler test suite.
>  
>Reporter: Max Englander
>Assignee: Max Englander
>Priority: Trivial
> Fix For: 1.9.0
>
>
> The following IDL will not compile:
>  
> {code:java}
> @namespace("org.avro.example.protocol")
> protocol TwoByteSender {
>   import schema "../schema/twobytes.avsc";
>   record TwoByteReq {
> org.avro.example.schema.TwoBytes twobyte; 
>   }
>   void send(org.avro.example.schema.TwoBytes twobyte);
>   void sendReq(TwoByteReq req);
> }{code}
> (The code below, *twobytes.avsc*, compiles without issue, and is included for 
> completeness.)
>  
> {code:java}
> {
>   "name": "TwoBytes",
>   "namespace": "org.avro.example.schema",
>   "size": "2",
>   "type": "fixed"
> }{code}
> The error thrown by the compiler is:
> {noformat}
> org.apache.avro.compiler.idl.ParseException: Encountered " "schema" "schema 
> "" at line 34, column 14.
> Was expecting one of:
> "array" ...
> "boolean" ...
> "double" ...
> "enum" ...
> "error" ...
> {noformat}
>  



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


[jira] [Updated] (AVRO-2157) IDL compiler won't accept the word "schema" in namespace-qualified type references

2018-03-14 Thread Doug Cutting (JIRA)

 [ 
https://issues.apache.org/jira/browse/AVRO-2157?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Doug Cutting updated AVRO-2157:
---
Assignee: Max Englander
  Status: Patch Available  (was: Open)

> IDL compiler won't accept the word "schema" in namespace-qualified type 
> references
> --
>
> Key: AVRO-2157
> URL: https://issues.apache.org/jira/browse/AVRO-2157
> Project: Avro
>  Issue Type: Bug
>  Components: java
>Affects Versions: 1.8.2, 1.8.1
> Environment: I have produced the error in Ubuntu 16.04, with Java 
> 1.8.0_151, using both the avro-maven-plugin, as well as by modifying the test 
> files in the apache/avro/lang/compiler test suite.
>  
>Reporter: Max Englander
>Assignee: Max Englander
>Priority: Trivial
>
> The following IDL will not compile:
>  
> {code:java}
> @namespace("org.avro.example.protocol")
> protocol TwoByteSender {
>   import schema "../schema/twobytes.avsc";
>   record TwoByteReq {
> org.avro.example.schema.TwoBytes twobyte; 
>   }
>   void send(org.avro.example.schema.TwoBytes twobyte);
>   void sendReq(TwoByteReq req);
> }{code}
> (The code below, *twobytes.avsc*, compiles without issue, and is included for 
> completeness.)
>  
> {code:java}
> {
>   "name": "TwoBytes",
>   "namespace": "org.avro.example.schema",
>   "size": "2",
>   "type": "fixed"
> }{code}
> The error thrown by the compiler is:
> {noformat}
> org.apache.avro.compiler.idl.ParseException: Encountered " "schema" "schema 
> "" at line 34, column 14.
> Was expecting one of:
> "array" ...
> "boolean" ...
> "double" ...
> "enum" ...
> "error" ...
> {noformat}
>  



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


[jira] [Updated] (AVRO-2157) IDL compiler won't accept the word "schema" in namespace-qualified type references

2018-03-09 Thread Max Englander (JIRA)

 [ 
https://issues.apache.org/jira/browse/AVRO-2157?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Max Englander updated AVRO-2157:


Not sure where the right place to paste this is, but here's my attempt to fix 
the issue:

https://github.com/apache/avro/pull/295

> IDL compiler won't accept the word "schema" in namespace-qualified type 
> references
> --
>
> Key: AVRO-2157
> URL: https://issues.apache.org/jira/browse/AVRO-2157
> Project: Avro
>  Issue Type: Bug
>  Components: java
>Affects Versions: 1.8.1, 1.8.2
> Environment: I have produced the error in Ubuntu 16.04, with Java 
> 1.8.0_151, using both the avro-maven-plugin, as well as by modifying the test 
> files in the apache/avro/lang/compiler test suite.
>  
>Reporter: Max Englander
>Priority: Trivial
>
> The following IDL will not compile:
>  
> {code:java}
> @namespace("org.avro.example.protocol")
> protocol TwoByteSender {
>   import schema "twobytes.avsc";
>   record TwoByteReq {
> org.avro.example.schema.TwoByte twobyte; 
>   }
>   void send(org.avro.example.schema.TwoByte twobyte);
>   void sendReq(TwoByteReq req);
> }{code}
> (The code below, *twobytes.avsc*, compiles without issue, and is included for 
> completeness.)
>  
> {code:java}
> {
>   "name": "TwoBytes",
>   "namespace": "org.avro.example.schema",
>   "size": "2",
>   "type": "fixed"
> }{code}
> The error thrown by the compiler is:
> {noformat}
> org.apache.avro.compiler.idl.ParseException: Encountered " "schema" "schema 
> "" at line 34, column 14.
> Was expecting one of:
> "array" ...
> "boolean" ...
> "double" ...
> "enum" ...
> "error" ...
> {noformat}
>  



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