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

Handle default engine type better for

partitioned tables
This commit is contained in:
pappa@c-1309e253.1238-1-64736c10.cust.bredbandsbolaget.se
2005-09-20 10:29:59 -04:00
parent f8d8548a93
commit 2530fcde11
11 changed files with 90 additions and 24 deletions

View File

@@ -30,6 +30,7 @@ INSERT into t1 values (10, 1, 1);
INSERT into t1 values (15, 1, 1);
select * from t1;
show create table t1;
ALTER TABLE t1
partition by range (a)
@@ -39,6 +40,7 @@ partitions 3
partition x3 values less than maxvalue tablespace ts3);
select * from t1;
show create table t1;
drop table if exists t1;
@@ -143,6 +145,10 @@ subpartition by hash (a+b)
);
SELECT * from t1;
show create table t1;
ALTER TABLE t1 ADD COLUMN d int;
show create table t1;
drop table t1;