summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/card_no_keys.result
blob: 1302cfaf252f38c2029610096a287c680e1ec376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set default_storage_engine='tokudb';
drop table if exists tt;
create table tt (a int, b int);
insert into tt values (1,0),(2,1),(3,2),(4,3);
show indexes from tt;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment	Index_comment
analyze table tt;
Table	Op	Msg_type	Msg_text
test.tt	analyze	status	OK
show indexes from tt;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment	Index_comment
drop table tt;