[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-10-06 Thread Hudson (Jira)


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

Hudson commented on AVRO-2522:
--

SUCCESS: Integrated in Jenkins build AvroJava #744 (See 
[https://builds.apache.org/job/AvroJava/744/])
AVRO-2522: Handle record types with Nullable and IList in their names 
(blachniet: 
[https://github.com/apache/avro/commit/85ce0227e427e5f7b5c84cfe59293e1b649b925a])
* (edit) lang/csharp/src/apache/main/Specific/ObjectCreator.cs
* (edit) lang/csharp/src/apache/test/Specific/ObjectCreatorTests.cs
AVRO-2522: Fix nullable resolution inside lists (#663) (blachniet: 
[https://github.com/apache/avro/commit/bfbd2d115aec576545b0673e876a652806b41986])
* (edit) lang/csharp/src/apache/test/Specific/SpecificTests.cs
* (edit) lang/csharp/src/apache/main/CodeGen/CodeGen.cs
* (add) lang/csharp/src/apache/test/Specific/EmbeddedGenericsRecord.cs


> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-10-06 Thread ASF subversion and git services (Jira)


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

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

Commit fea6888bc211e76abd5823bf50d9bfb709b47ab7 in avro's branch 
refs/heads/branch-1.9 from Brian Lachniet
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=fea6888 ]

AVRO-2522: Fix nullable resolution inside lists (#663)

(cherry picked commit from 23b6eb8a65cffbecc6166757a009644ace78f026)


> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-10-06 Thread ASF subversion and git services (Jira)


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

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

Commit e24c2bf12c039bb8488462aa8b03a89e7e323a8f in avro's branch 
refs/heads/branch-1.9 from Brian Lachniet
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=e24c2bf ]

AVRO-2522: Handle record types with Nullable and IList in their names
(#663)

(cherry picked commit from 6bccc286c13d9af41cface30c92e39705a998de7)


> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-10-06 Thread ASF subversion and git services (Jira)


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

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

Commit 85ce0227e427e5f7b5c84cfe59293e1b649b925a in avro's branch 
refs/heads/master from Brian Lachniet
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=85ce022 ]

AVRO-2522: Handle record types with Nullable and IList in their names
(#663)


> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-10-06 Thread ASF subversion and git services (Jira)


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

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

Commit bfbd2d115aec576545b0673e876a652806b41986 in avro's branch 
refs/heads/master from Brian Lachniet
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=bfbd2d1 ]

AVRO-2522: Fix nullable resolution inside lists (#663)


> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-09-01 Thread Brian Lachniet (Jira)


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

Brian Lachniet commented on AVRO-2522:
--

Yes, this can wait for 1.9.2. I removed 1.9.1 from the "Fix Version".

> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[jira] [Commented] (AVRO-2522) Specific API doesn't handle schemas with IList or Nullable in name

2019-09-01 Thread Sean Busbey (Jira)


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

Sean Busbey commented on AVRO-2522:
---

How close is this to landing? it's not marked as a blocker; would it be fine 
waiting for 1.9.2?

> Specific API doesn't handle schemas with IList or Nullable in name
> --
>
> Key: AVRO-2522
> URL: https://issues.apache.org/jira/browse/AVRO-2522
> Project: Apache Avro
>  Issue Type: Bug
>  Components: csharp
>Affects Versions: 1.9.0
>Reporter: Brian Lachniet
>Assignee: Brian Lachniet
>Priority: Major
> Fix For: 1.9.1
>
>
> The Specific API in the C# bindings do not properly handle:
>  * Schemas with {{IList}} in their name
>  * Schemas with {{Nullable}} in their name
>  * Arrays of nullables (see example schema below)
> These throw an exception from the {{ObjectCreator}} indicating that it could 
> not find the type.
> This sample application on GitHub demonstrates these problems: 
> [https://github.com/blachniet/AVRO-2522].
> Here's a sample schema containing an array of nullables that triggers this 
> problem.
> {code:java}
> {
>   "namespace": "AvroListOfLists.Records",
>   "name": "MyRecord",
>   "type": "record",
>   "fields": [
> {
>   "name": "MyList",
>   "type": {
> "type": "array",
> "items": ["null", "int"]
>   }
> }
>   ]
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)