You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues-all@impala.apache.org by "Csaba Ringhofer (JIRA)" <ji...@apache.org> on 2018/10/30 17:53:00 UTC

[jira] [Created] (IMPALA-7784) Partition pruning handles escaped strings incorrectly

Csaba Ringhofer created IMPALA-7784:
---------------------------------------

             Summary: Partition pruning handles escaped strings incorrectly
                 Key: IMPALA-7784
                 URL: https://issues.apache.org/jira/browse/IMPALA-7784
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 3.0
            Reporter: Csaba Ringhofer


Repro:
{code}
create table tpart (i int) partitioned by (p string)
insert into tpart partition (p="\"") values (1);

select  * from tpart where p = "\"";
Result;
Fetched 0 row(s)

select  * from tpart where p = '"';
Result:
1,""""

{code}

Hive returns the row for both queries.



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

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-all-unsubscribe@impala.apache.org
For additional commands, e-mail: issues-all-help@impala.apache.org