Open
Description
Describe the bug
Version: Apache Doris 0.12.0-rc03
To Reproduce
- Create a table:
CREATE TABLE `test` (
`date` date,
`userid` varchar(128)
) ENGINE=OLAP
DUPLICATE KEY(`date`, `userid`)
PARTITION BY RANGE(`date`)()
DISTRIBUTED BY HASH(`userid`) BUCKETS 8
PROPERTIES (
"colocate_with" = "test"
);
- Try to add a partition:
ALTER TABLE test add PARTITION p1 VALUES [("2020-10-15"), ("2020-10-16"));
- See the error:
ERROR 1064 (HY000): Unexpected exception: null