[
https://issues.apache.org/jira/browse/AVRO-675?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Doug Cutting updated AVRO-675:
------------------------------
Fix Version/s: (was: 1.4.1)
1.5.0
Oops. Actually set fix-version to 1.5.0!
> Bytes and fixed setters don't update datum size
> -----------------------------------------------
>
> Key: AVRO-675
> URL: https://issues.apache.org/jira/browse/AVRO-675
> Project: Avro
> Issue Type: Bug
> Components: c
> Affects Versions: 1.4.0
> Reporter: Douglas Creager
> Assignee: Douglas Creager
> Fix For: 1.5.0
>
> Attachments: avro-675.patch
>
> Original Estimate: 0.25h
> Remaining Estimate: 0.25h
>
> The setter methods for bytes and fixed datum instances don't update the size
> field. So, for instance, if you create a datum:
> {{avro_datum_t datum = avro_wrapbytes(NULL, 0);}}
> Then later you update that datum to point to a different buffer:
> {{avro_wrapbytes_set(datum, "hello", 5);}}
> If you write that datum out to a file, you'll get a zero-length value in the
> output, since the size pointer didn't get updated from 0 to 5.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.