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