mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
7 lines
193 B
Text
7 lines
193 B
Text
create table t1 (i int) engine=myisam partition by hash(i) partitions 2 ;
|
|
lock table t1 write;
|
|
truncate table t1;
|
|
desc t1;
|
|
Field Type Null Key Default Extra
|
|
i int(11) YES NULL
|
|
drop table t1;
|