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

Bo Meng closed SPARK-14080.
---------------------------
    Resolution: Won't Fix

It would probably be cosmic issue and Java compiler could optimize this 
redundancy away. 

> Improve the codegen for Filter
> ------------------------------
>
>                 Key: SPARK-14080
>                 URL: https://issues.apache.org/jira/browse/SPARK-14080
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>            Reporter: Bo Meng
>            Priority: Minor
>
> Currently, the codegen of null check for Filter sometime generates code as 
> followings:
> /* 072 */       if (!(!(filter_isNull2))) continue;
> It will be better to be:
> /* 072 */       if (filter_isNull2) continue;



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

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to