You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Julian Hyde (JIRA)" <ji...@apache.org> on 2018/04/11 14:32:00 UTC

[jira] [Updated] (CALCITE-2247) Add rule to push in condition condition into a related disjunctive expression

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

Julian Hyde updated CALCITE-2247:
---------------------------------
    Description: 
Simplify expressions like: {code}a = 1 AND (a = 1 OR a = 2){code} to {code}a = 1{code}

Conditions to apply will be:
* in an AND condition there exists a comparison(c) and an OR (o)
* o and c only reference 1 variable

See HIVE-19097 for more info.

  was:
simplify expressions like: {a = 1 && (a=1 || a=2)} to {a=1}
conditions to apply will be:

* in an AND condition exists a comparision(c) and an OR (o)
* o and c only reference 1 variable

HIVE-19097 for more info


> Add rule to push in condition condition into a related disjunctive expression
> -----------------------------------------------------------------------------
>
>                 Key: CALCITE-2247
>                 URL: https://issues.apache.org/jira/browse/CALCITE-2247
>             Project: Calcite
>          Issue Type: Improvement
>            Reporter: Zoltan Haindrich
>            Assignee: Zoltan Haindrich
>            Priority: Major
>
> Simplify expressions like: {code}a = 1 AND (a = 1 OR a = 2){code} to {code}a = 1{code}
> Conditions to apply will be:
> * in an AND condition there exists a comparison(c) and an OR (o)
> * o and c only reference 1 variable
> See HIVE-19097 for more info.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)