summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/card_sk_2.result
blob: 9c73543d165bb90299ffe6502f7fc394bbddc703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
drop table if exists tt;
create table tt (a int, b int, key(a,b));
insert into tt values (0,0),(0,1),(1,0),(1,1);
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
tt	1	a	1	a	A	NULL	NULL	NULL	YES	BTREE		
tt	1	a	2	b	A	NULL	NULL	NULL	YES	BTREE		
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
tt	1	a	1	a	A	2	NULL	NULL	YES	BTREE		
tt	1	a	2	b	A	4	NULL	NULL	YES	BTREE		
flush tables;
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
tt	1	a	1	a	A	2	NULL	NULL	YES	BTREE		
tt	1	a	2	b	A	4	NULL	NULL	YES	BTREE		
drop table tt;