You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Bo Meng (JIRA)" <ji...@apache.org> on 2016/03/23 21:38:25 UTC

[jira] [Closed] (SPARK-14080) Improve the codegen for Filter

     [ 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-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org