Bo Meng created SPARK-14080:
-------------------------------

             Summary: 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