You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Liya Fan (JIRA)" <ji...@apache.org> on 2019/07/09 10:27:00 UTC

[jira] [Updated] (ARROW-5884) [Java] Fix the get method of StructVector

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

Liya Fan updated ARROW-5884:
----------------------------
    Description: 
When the data at the specified location is null, there is no need to call the method from super to set the reader

 holder.isSet = isSet(index);
 super.get(index, holder);

  was:
When the data at the specified location is null, there is no need to call the method from super to set the reader

   {{ holder.isSet = isSet(index);}}
   {{ super.get(index, holder);}}


> [Java] Fix the get method of StructVector
> -----------------------------------------
>
>                 Key: ARROW-5884
>                 URL: https://issues.apache.org/jira/browse/ARROW-5884
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Java
>            Reporter: Liya Fan
>            Assignee: Liya Fan
>            Priority: Minor
>
> When the data at the specified location is null, there is no need to call the method from super to set the reader
>  holder.isSet = isSet(index);
>  super.get(index, holder);



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)