1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Rearranged test cases, move InnoDB test cases to partition_innodb

This commit is contained in:
mikael/pappa@dator5.(none)
2006-09-08 03:18:05 -04:00
parent 814b81ad6b
commit 2b3a53e54e
8 changed files with 139 additions and 137 deletions

View File

@@ -9,18 +9,6 @@
drop table if exists t1;
--enable_warnings
#
# Bug 21339: Crash in Explain Partitions
#
create table t1 (a date)
engine = innodb
partition by range (year(a))
(partition p0 values less than (2006),
partition p1 values less than (2007));
explain partitions select * from t1
where a between '2006-01-01' and '2007-06-01';
drop table t1;
#
# More checks for partition pruning
#