You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Ashutosh Chauhan (JIRA)" <ji...@apache.org> on 2014/11/16 06:53:34 UTC

[jira] [Updated] (HIVE-7997) Potential null pointer reference in ObjectInspectorUtils#compareTypes()

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

Ashutosh Chauhan updated HIVE-7997:
-----------------------------------
       Resolution: Fixed
    Fix Version/s: 0.15.0
           Status: Resolved  (was: Patch Available)

Committed to trunk. Thanks, Navis!

> Potential null pointer reference in ObjectInspectorUtils#compareTypes()
> -----------------------------------------------------------------------
>
>                 Key: HIVE-7997
>                 URL: https://issues.apache.org/jira/browse/HIVE-7997
>             Project: Hive
>          Issue Type: Bug
>          Components: Types
>            Reporter: Ted Yu
>            Assignee: Navis
>             Fix For: 0.15.0
>
>         Attachments: HIVE-7997.1.patch.txt
>
>
> {code}
>       if (childFieldsList1 == null && childFieldsList2 == null) {
>         return true;
>       }
>       if (childFieldsList1.size() != childFieldsList2.size()) {
>         return false;
>       }
> {code}
> If either childFieldsList1 or childFieldsList2 is null but not both, the second if statement would produce NPE.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)