You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Dongjoon Hyun (JIRA)" <ji...@apache.org> on 2016/04/11 09:04:25 UTC

[jira] [Updated] (SPARK-14502) Add optimization for Binary Comparison Simplification

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

Dongjoon Hyun updated SPARK-14502:
----------------------------------
    Summary: Add optimization for Binary Comparison Simplification  (was: Add optimization for Non-Nullable Binary Comparison Simplification)

> Add optimization for Binary Comparison Simplification
> -----------------------------------------------------
>
>                 Key: SPARK-14502
>                 URL: https://issues.apache.org/jira/browse/SPARK-14502
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>            Reporter: Dongjoon Hyun
>
> For non-nullable binary comparisons, we can simplifies `semantically-equal  expressions` further:
> 1) Replace '=', '<=', and '>=' with 'true' literal
> 2) Replace '<' and '>' with 'false' literal
> For example, the following example plan
> {code}
> scala> sql("SELECT * FROM (SELECT explode(array(1,2,3)) a) T WHERE a BETWEEN a AND a+7").explain()
> ...
> :  +- Filter ((a#59 >= a#59) && (a#59 <= (a#59 + 7)))
> ...
> {code}
> will be optimized into the following.
> {code}
> :  +- Filter (a#47 <= (a#47 + 7))
> {code}



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