You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kudu.apache.org by "Todd Lipcon (JIRA)" <ji...@apache.org> on 2017/10/05 23:42:01 UTC

[jira] [Created] (KUDU-2173) Partitions are pruned incorrectly when range-partitioned on a PK prefix

Todd Lipcon created KUDU-2173:
---------------------------------

             Summary: Partitions are pruned incorrectly when range-partitioned on a PK prefix
                 Key: KUDU-2173
                 URL: https://issues.apache.org/jira/browse/KUDU-2173
             Project: Kudu
          Issue Type: Bug
          Components: client
    Affects Versions: 1.4.0, 1.3.1, 1.2.0, 1.5.0
            Reporter: Todd Lipcon
            Assignee: Dan Burkert
            Priority: Blocker


Given a schema:
{code}
Schema [
  0:a[int8 NOT NULL],
  1:b[int8 NOT NULL]
]
PRIMARY KEY (a,b)
{code}
and a partition:
{code}
RANGE (a) PARTITION VALUES >= 10
{code}
... the partition pruner incorrectly handles the following scan spec:
{code}
 `a` < 11 AND `b` < 11
{code}
... and prunes the partition despite the possibility of it having a row like (10, 1)




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)