You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Matt Massie (JIRA)" <ji...@apache.org> on 2010/10/06 00:58:33 UTC

[jira] Resolved: (AVRO-675) Bytes and fixed setters don't update datum size

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

Matt Massie resolved AVRO-675.
------------------------------

    Resolution: Fixed

Commit to trunk.  Thanks for the patch!

> 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
>         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.