1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Moving test that requires innodb to partition_innodb

This commit is contained in:
msvensson@shellback.(none)
2006-05-18 19:16:51 +02:00
parent 8a781c23c7
commit d8d05f3142
4 changed files with 14 additions and 12 deletions

View File

@ -0,0 +1,5 @@
create table t1 (a int) engine=innodb partition by hash(a) ;
show table status like 't1';
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1 InnoDB 10 Compact 2 8192 16384 0 0 0 NULL NULL NULL NULL latin1_swedish_ci NULL partitioned
drop table t1;