mirror of
https://github.com/MariaDB/server.git
synced 2025-09-11 05:52:26 +03:00
merge
This commit is contained in:
@@ -1,4 +1,11 @@
|
||||
DROP TABLE IF EXISTS t1;
|
||||
CREATE TABLE t1 (a INT PRIMARY KEY)
|
||||
ENGINE MYISAM
|
||||
PARTITION BY HASH (a)
|
||||
PARTITIONS 1;
|
||||
INSERT INTO t1 VALUES (1),(2),(3),(4),(5);
|
||||
ALTER TABLE t1 REORGANIZE PARTITION;
|
||||
DROP TABLE t1;
|
||||
create table t1 (a int)
|
||||
partition by range (a)
|
||||
subpartition by key (a)
|
||||
|
Reference in New Issue
Block a user