You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2017/03/02 07:07:46 UTC

[jira] [Commented] (DRILL-5252) A condition returns always true

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

ASF GitHub Bot commented on DRILL-5252:
---------------------------------------

Github user jinfengni commented on the issue:

    https://github.com/apache/drill/pull/745
  
    +1



> A condition returns always true
> -------------------------------
>
>                 Key: DRILL-5252
>                 URL: https://issues.apache.org/jira/browse/DRILL-5252
>             Project: Apache Drill
>          Issue Type: Bug
>            Reporter: JC
>            Priority: Minor
>              Labels: ready-to-commit
>
> I've found the following code smell in recent github snapshot.
> Path: exec/java-exec/src/main/java/org/apache/drill/exec/expr/EqualityVisitor.java
> {code:java}
> 287 
> 288   @Override
> 289   public Boolean visitNullConstant(TypedNullConstant e, LogicalExpression value) throws RuntimeException {
> 290     if (!(value instanceof TypedNullConstant)) {
> 291       return false;
> 292     }
> 293     return e.getMajorType().equals(e.getMajorType());
> 294   }
> 295
> {code}
> Should it be like this?
> {code:java}
> 292     }
> 293     return value.getMajorType().equals(e.getMajorType());
> 294   }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)