Dimitris Tsirogiannis created KUDU-1750:
-------------------------------------------
Summary: Drop range partition is not working as expected
Key: KUDU-1750
URL: https://issues.apache.org/jira/browse/KUDU-1750
Project: Kudu
Issue Type: Bug
Affects Versions: 1.0.1
Reporter: Dimitris Tsirogiannis
Priority: Blocker
There are several cases wrt drop range partitions that don't seem to work as
expected.
1. Drop matches only the lower bound (may be correct but is confusing to users).
- alter table foo add range partition 10 < values <= 20;
- alter table foo drop range partition 10 < values < 30; <--- this works and
deletes partition (10, 20] but I'd expect an error.
2.
- alter table foo add range partition values < 10;
- alter table foo add range partition 20 < values <= 30;
- alter table foo drop range partition values < 10000; <--- this drops the
range partition (,10).
This is Impala syntax that will be introduced in IMPALA-2890 (not currently
committed).
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)