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

[jira] [Commented] (HIVE-8576) Guaranteed NPE in StatsRulesProcFactory

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

Xuefu Zhang commented on HIVE-8576:
-----------------------------------

I think the observation is correct, but I think it would be nice to create a test case for this if it's easy.

> Guaranteed NPE in StatsRulesProcFactory
> ---------------------------------------
>
>                 Key: HIVE-8576
>                 URL: https://issues.apache.org/jira/browse/HIVE-8576
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Lars Francke
>            Assignee: Lars Francke
>         Attachments: HIVE-8576.1.patch
>
>
> Code looks like this:
> {code}
>     private List<Integer> getPrimaryKeyCandidates(List<Operator<? extends OperatorDesc>> ops) {
>       List<Integer> result = Lists.newArrayList();
>       if (ops != null || !ops.isEmpty()) {
>         for (int i = 0; i < ops.size(); i++) {
> {code}
> The {{||}} should be {{&&}} as the current {{if}} statement can be rewritten as {{!(ops == null && ops.isEmpty())}} which doesn't make sense.
> Or am I missing something?



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