summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/card_scale_percent.result
blob: 981433fac9137e77e5e404c664e1d8aefb630fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
analyze table tt;
Table	Op	Msg_type	Msg_text
test.tt	analyze	status	OK
set global tokudb_cardinality_scale_percent = 10;
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	0	PRIMARY	1	a	A	4000	NULL	NULL		BTREE		
tt	1	b	1	b	A	4000	NULL	NULL	YES	BTREE		
tt	1	c	1	c	A	4000	NULL	NULL	YES	BTREE		
tt	1	d	1	d	A	4000	NULL	NULL	YES	BTREE		
set global tokudb_cardinality_scale_percent = 50;
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	0	PRIMARY	1	a	A	4000	NULL	NULL		BTREE		
tt	1	b	1	b	A	4000	NULL	NULL	YES	BTREE		
tt	1	c	1	c	A	4000	NULL	NULL	YES	BTREE		
tt	1	d	1	d	A	2000	NULL	NULL	YES	BTREE		
set global tokudb_cardinality_scale_percent = 100;
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	0	PRIMARY	1	a	A	4000	NULL	NULL		BTREE		
tt	1	b	1	b	A	4000	NULL	NULL	YES	BTREE		
tt	1	c	1	c	A	2000	NULL	NULL	YES	BTREE		
tt	1	d	1	d	A	1000	NULL	NULL	YES	BTREE		
set global tokudb_cardinality_scale_percent = 200;
Warnings:
Warning	1292	Truncated incorrect tokudb_cardinality_scale_percent value: '200'
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	0	PRIMARY	1	a	A	4000	NULL	NULL		BTREE		
tt	1	b	1	b	A	4000	NULL	NULL	YES	BTREE		
tt	1	c	1	c	A	2000	NULL	NULL	YES	BTREE		
tt	1	d	1	d	A	1000	NULL	NULL	YES	BTREE