You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Matt McCline (JIRA)" <ji...@apache.org> on 2017/06/21 07:12:00 UTC

[jira] [Assigned] (HIVE-13220) Set isNull[i] = false for non-null decimal values in DecimalColumnVector

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

Matt McCline reassigned HIVE-13220:
-----------------------------------

    Assignee: Prasanth Jayachandran  (was: Matt McCline)

> Set isNull[i] = false for non-null decimal values in DecimalColumnVector
> ------------------------------------------------------------------------
>
>                 Key: HIVE-13220
>                 URL: https://issues.apache.org/jira/browse/HIVE-13220
>             Project: Hive
>          Issue Type: Bug
>    Affects Versions: 2.1.0
>            Reporter: Prasanth Jayachandran
>            Assignee: Prasanth Jayachandran
>
> When fixing HIVE-13083 noticed that for non-null decimal values, set function does not update the isNull state (isNull[i] should be set to false). Updating this state in DecimalColumnVector breaks all decimal vector filter expressions as the filter expression can change state on it's own.
> {code}
>         System.arraycopy(inputIsNull, 0, outputIsNull, 0, n);
>         for(int i = 0; i != n; i++) {
>           // The following may override a "false" null setting if an error or overflow occurs.
>           DecimalUtil.addChecked(i, vector[i], value, outputColVector);
>         }
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)