mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
5 lines
125 B
Text
5 lines
125 B
Text
|
CREATE TABLE t (a INT, KEY(a)) ENGINE=Aria PARTITION BY KEY(a) PARTITIONS 2;
|
||
|
SELECT * FROM t PARTITION (p1);
|
||
|
a
|
||
|
DROP TABLE t;
|