blob: b4b9bfcfd8cf736b4ffd6a2c1a82f238fd4cc0b1 [file] [log] [blame]
create table tst_n1(a int, b int) partitioned by (d string);
alter table tst_n1 add partition (d='2009-01-01');
explain
select count(1) from tst_n1 x where x.d='2009-01-01';
select count(1) from tst_n1 x where x.d='2009-01-01';