[
https://issues.apache.org/jira/browse/AVRO-3622?focusedWorklogId=805143&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-805143
]
ASF GitHub Bot logged work on AVRO-3622:
----------------------------------------
Author: ASF GitHub Bot
Created on: 31/Aug/22 08:23
Start Date: 31/Aug/22 08:23
Worklog Time Spent: 10m
Work Description: martin-g commented on PR #1843:
URL: https://github.com/apache/avro/pull/1843#issuecomment-1232623152
https://github.com/apache/avro/pull/1843/files#diff-f13709b70a228170658d5db1f82fca6cf61a1968f63c6081be6cc2eeb6334973R84
is a new code that does some Python magic (`.[-1]`, i.e. returns the last
chunk) and that's why I asked for more tests.
Let's wait some more for other devs to also take a look at the PR.
Issue Time Tracking
-------------------
Worklog Id: (was: 805143)
Time Spent: 1h 40m (was: 1.5h)
> Python compatibility check fails if record with and without namespace are
> compared
> ----------------------------------------------------------------------------------
>
> Key: AVRO-3622
> URL: https://issues.apache.org/jira/browse/AVRO-3622
> Project: Apache Avro
> Issue Type: Bug
> Components: python
> Affects Versions: 1.11.1
> Reporter: Jarkko Jaakola
> Priority: Major
> Labels: pull-request-available
> Time Spent: 1h 40m
> Remaining Estimate: 0h
>
> Avro spec:
> {noformat}
> To match, one of the following must hold:
> ...
> * both schemas are records with the same (unqualified) name{noformat}
> Following records are compatible. The `ReaderWriterCompatibilityChecker`
> reports name mismatch and an incompatibility. Similar test case with Java
> implementation passes.
> {code:java}
> WITHOUT_NAMESPACE_RECORD = parse(
> json.dumps(
> {
> "type": SchemaType.RECORD,
> "name": "Record1",
> "fields": [
> {
> "name": "f1",
> "type": "int",
> }
> ],
> },
> )
> )
> WITH_NAMESPACE_RECORD = parse(
> json.dumps(
> {
> "type": SchemaType.RECORD,
> "name": "ns.Record1",
> "fields": [
> {
> "name": "f1",
> "type": "int",
> }
> ],
> },
> )
> )
>
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)