[jira] [Commented] (AVRO-3621) [Rust] Improved resolution of nullable record fields

2022-08-28 Thread ASF subversion and git services (Jira)


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

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

Commit 09041facad0a4c2c131b7ffde6497d7580b964b9 in avro's branch 
refs/heads/master from Martin Tzvetanov Grigorov
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=09041faca ]

AVRO-3621: Check the argument of assert_not_logged() against the last logged 
message before panicing

Signed-off-by: Martin Tzvetanov Grigorov 


> [Rust] Improved resolution of nullable record fields
> 
>
> Key: AVRO-3621
> URL: https://issues.apache.org/jira/browse/AVRO-3621
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: rust
>Reporter: Shaeq Ahmed
>Assignee: Shaeq Ahmed
>Priority: Major
>  Labels: pull-request-available
> Fix For: 1.12.0, 1.11.2
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Currently a nested record cannot be resolved to a corresponding schema where 
> the fields are stored as nullable variants. This PR adds support for 
> upcasting the values to a Union type to allow for this. This should improve 
> support for reading and writing from compatible schemas, where some fields 
> are listed as nullable in the destination.  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AVRO-3621) [Rust] Improved resolution of nullable record fields

2022-08-26 Thread ASF subversion and git services (Jira)


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

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

Commit 308e4e125ad1d124f52fd5332f338a78b0129f6d in avro's branch 
refs/heads/branch-1.11 from Martin Tzvetanov Grigorov
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=308e4e125 ]

AVRO-3621: Check the argument of assert_not_logged() against the last logged 
message before panicing

Signed-off-by: Martin Tzvetanov Grigorov 
(cherry picked from commit 02e6b5c92cedc592a4020cecfdbdb9afff7e784f)


> [Rust] Improved resolution of nullable record fields
> 
>
> Key: AVRO-3621
> URL: https://issues.apache.org/jira/browse/AVRO-3621
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: rust
>Reporter: Shaeq Ahmed
>Assignee: Shaeq Ahmed
>Priority: Major
>  Labels: pull-request-available
> Fix For: 1.12.0, 1.11.2
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Currently a nested record cannot be resolved to a corresponding schema where 
> the fields are stored as nullable variants. This PR adds support for 
> upcasting the values to a Union type to allow for this. This should improve 
> support for reading and writing from compatible schemas, where some fields 
> are listed as nullable in the destination.  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AVRO-3621) [Rust] Improved resolution of nullable record fields

2022-08-26 Thread ASF subversion and git services (Jira)


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

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

Commit 25a83f547af675edf79aad2620281fdb8bbd12bc in avro's branch 
refs/heads/branch-1.11 from Shaeq Ahmed
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=25a83f547 ]

AVRO-3621: [Rust] do not log each error while validating against union variants 
(#1839)

AVRO-3621: do not log each error while validating against union variants

AVRO-3621: Improve the panic message for the new assert_not_logged() helper 
method

Signed-off-by: Martin Tzvetanov Grigorov 
Co-authored-by: Martin Tzvetanov Grigorov 
(cherry picked from commit ae31eb12a06b5387f56261283344fdbaaeca2f02)


> [Rust] Improved resolution of nullable record fields
> 
>
> Key: AVRO-3621
> URL: https://issues.apache.org/jira/browse/AVRO-3621
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: rust
>Reporter: Shaeq Ahmed
>Assignee: Shaeq Ahmed
>Priority: Major
>  Labels: pull-request-available
> Fix For: 1.12.0, 1.11.2
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Currently a nested record cannot be resolved to a corresponding schema where 
> the fields are stored as nullable variants. This PR adds support for 
> upcasting the values to a Union type to allow for this. This should improve 
> support for reading and writing from compatible schemas, where some fields 
> are listed as nullable in the destination.  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AVRO-3621) [Rust] Improved resolution of nullable record fields

2022-08-26 Thread ASF subversion and git services (Jira)


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

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

Commit ae31eb12a06b5387f56261283344fdbaaeca2f02 in avro's branch 
refs/heads/master from Shaeq Ahmed
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=ae31eb12a ]

AVRO-3621: [Rust] do not log each error while validating against union variants 
(#1839)

AVRO-3621: do not log each error while validating against union variants

AVRO-3621: Improve the panic message for the new assert_not_logged() helper 
method

Signed-off-by: Martin Tzvetanov Grigorov 
Co-authored-by: Martin Tzvetanov Grigorov 

> [Rust] Improved resolution of nullable record fields
> 
>
> Key: AVRO-3621
> URL: https://issues.apache.org/jira/browse/AVRO-3621
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: rust
>Reporter: Shaeq Ahmed
>Assignee: Shaeq Ahmed
>Priority: Major
>  Labels: pull-request-available
> Fix For: 1.12.0, 1.11.2
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Currently a nested record cannot be resolved to a corresponding schema where 
> the fields are stored as nullable variants. This PR adds support for 
> upcasting the values to a Union type to allow for this. This should improve 
> support for reading and writing from compatible schemas, where some fields 
> are listed as nullable in the destination.  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AVRO-3621) [Rust] Improved resolution of nullable record fields

2022-08-26 Thread ASF subversion and git services (Jira)


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

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

Commit a3d120f3750677d1e6ab1b29384de5e8eaf38ac5 in avro's branch 
refs/heads/branch-1.11 from Shaeq Ahmed
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=a3d120f37 ]

AVRO: [Rust] Improved resolution of nullable record fields. (#1837)

* AVRO: [Rust] Improved resolution of nullable record fields.

* AVRO: [Rust] Update to improvements for nullable record fields PR.

* AVRO-3621: Improve test method name

* AVRO-3621: Revert non-related change

Signed-off-by: Martin Tzvetanov Grigorov 
Co-authored-by: Martin Tzvetanov Grigorov 
(cherry picked from commit ddf10bd17f591638f12128c4fff2b4681b245ac0)


> [Rust] Improved resolution of nullable record fields
> 
>
> Key: AVRO-3621
> URL: https://issues.apache.org/jira/browse/AVRO-3621
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: rust
>Reporter: Shaeq Ahmed
>Priority: Major
>
> Currently a nested record cannot be resolved to a corresponding schema where 
> the fields are stored as nullable variants. This PR adds support for 
> upcasting the values to a Union type to allow for this. This should improve 
> support for reading and writing from compatible schemas, where some fields 
> are listed as nullable in the destination.  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (AVRO-3621) [Rust] Improved resolution of nullable record fields

2022-08-26 Thread ASF subversion and git services (Jira)


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

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

Commit ddf10bd17f591638f12128c4fff2b4681b245ac0 in avro's branch 
refs/heads/master from Shaeq Ahmed
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=ddf10bd17 ]

AVRO: [Rust] Improved resolution of nullable record fields. (#1837)

* AVRO: [Rust] Improved resolution of nullable record fields.

* AVRO: [Rust] Update to improvements for nullable record fields PR.

* AVRO-3621: Improve test method name

* AVRO-3621: Revert non-related change

Signed-off-by: Martin Tzvetanov Grigorov 
Co-authored-by: Martin Tzvetanov Grigorov 

> [Rust] Improved resolution of nullable record fields
> 
>
> Key: AVRO-3621
> URL: https://issues.apache.org/jira/browse/AVRO-3621
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: rust
>Reporter: Shaeq Ahmed
>Priority: Major
>
> Currently a nested record cannot be resolved to a corresponding schema where 
> the fields are stored as nullable variants. This PR adds support for 
> upcasting the values to a Union type to allow for this. This should improve 
> support for reading and writing from compatible schemas, where some fields 
> are listed as nullable in the destination.  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)