You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Steve Carlin (Jira)" <ji...@apache.org> on 2019/09/27 21:00:03 UTC

[jira] [Created] (HIVE-22259) Rewriting fails for `BETWEEN` clauses with different ranges in MV and query

Steve Carlin created HIVE-22259:
-----------------------------------

             Summary: Rewriting fails for `BETWEEN` clauses with different ranges in MV and query
                 Key: HIVE-22259
                 URL: https://issues.apache.org/jira/browse/HIVE-22259
             Project: Hive
          Issue Type: Sub-task
            Reporter: Steve Carlin
         Attachments: expr5.sql

Script attached.

The following query does not rewrite:

create materialized view view9 stored as orc as (select prod_id, cust_id, store_id, sale_date, qty, amt, descr from sales where cust_id >= 1 and prod_id < 31);

 

-- this is not ok

explain extended select  * from sales where cust_id between 1 and 20 and prod_id < 31;



--
This message was sent by Atlassian Jira
(v8.3.4#803005)