You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Alexander Pivovarov (JIRA)" <ji...@apache.org> on 2015/03/13 06:35:38 UTC

[jira] [Created] (HIVE-9953) fix NPE in WindowingTableFunction

Alexander Pivovarov created HIVE-9953:
-----------------------------------------

             Summary: fix NPE in WindowingTableFunction
                 Key: HIVE-9953
                 URL: https://issues.apache.org/jira/browse/HIVE-9953
             Project: Hive
          Issue Type: Bug
            Reporter: Alexander Pivovarov
            Assignee: Alexander Pivovarov
            Priority: Trivial


WindowingTableFunction line 1193
{code}
// now
return (s1 == null && s2 == null) || s1.equals(s2);

// should be
return (s1 == null && s2 == null) || (s1 != null && s1.equals(s2));
{code}



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