1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

WL#2985 "Partition pruning", postreview fixes: Small code fixes and better comments

This commit is contained in:
sergefp@mysql.com
2005-12-27 15:04:35 +03:00
parent 530cddb6cd
commit 328f8fa735
8 changed files with 163 additions and 34 deletions

View File

@@ -203,3 +203,14 @@ ALTER TABLE t1 REORGANISE PARTITION x0,x1,x2 INTO
(PARTITION x1 VALUES LESS THAN (6));
show create table t1;
drop table t1;
# Testcase for BUG#15819
create table t1 (a int not null, b int not null) partition by LIST (a+b) (
partition p0 values in (12),
partition p1 values in (14)
);
--error 1500
insert into t1 values (10,1);
drop table t1;