[ 
https://issues.apache.org/jira/browse/HIVE-9953?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14364038#comment-14364038
 ] 

Jason Dere commented on HIVE-9953:
----------------------------------

Would you be able to link all of these Jiras to HIVE-9809, or to make them 
subtasks of that Jira?

> fix NPE in WindowingTableFunction
> ---------------------------------
>
>                 Key: HIVE-9953
>                 URL: https://issues.apache.org/jira/browse/HIVE-9953
>             Project: Hive
>          Issue Type: Bug
>          Components: UDF
>            Reporter: Alexander Pivovarov
>            Assignee: Alexander Pivovarov
>            Priority: Trivial
>             Fix For: 1.2.0
>
>         Attachments: HIVE-9953.1.patch
>
>
> 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)

Reply via email to