diff options
author | msvensson@shellback.(none) <> | 2006-05-18 19:16:51 +0200 |
---|---|---|
committer | msvensson@shellback.(none) <> | 2006-05-18 19:16:51 +0200 |
commit | d8d05f31423b8381dead1c68d29c074d5f66c911 (patch) | |
tree | 1ddf04ad7ecd02c5bb359a5ce6d3467595e8580a /mysql-test/r/partition_innodb.result | |
parent | 8a781c23c79628461185323e76ac6418386a4184 (diff) | |
download | mariadb-git-d8d05f31423b8381dead1c68d29c074d5f66c911.tar.gz |
Moving test that requires innodb to partition_innodb
Diffstat (limited to 'mysql-test/r/partition_innodb.result')
-rw-r--r-- | mysql-test/r/partition_innodb.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/partition_innodb.result b/mysql-test/r/partition_innodb.result new file mode 100644 index 00000000000..f4e75ccdb05 --- /dev/null +++ b/mysql-test/r/partition_innodb.result @@ -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; |