File: secondary_key_costs.result

package info (click to toggle)
mariadb 1%3A11.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 772,520 kB
  • sloc: ansic: 2,414,714; cpp: 1,791,394; asm: 381,336; perl: 62,905; sh: 49,647; pascal: 40,897; java: 39,363; python: 20,791; yacc: 20,432; sql: 17,907; xml: 12,344; ruby: 8,544; cs: 6,542; makefile: 6,145; ada: 1,879; lex: 1,193; javascript: 996; objc: 80; tcl: 73; awk: 46; php: 22
file content (241 lines) | stat: -rw-r--r-- 10,543 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
create table t1 (
pk int primary key auto_increment,
nm varchar(32),
fl1 tinyint default 0,
fl2 tinyint default 0,
index idx1(nm, fl1),
index idx2(fl2)
) engine=myisam charset=latin1;
create table name (
pk int primary key auto_increment,
nm bigint
) engine=myisam;
create table flag2 (
pk int primary key auto_increment,
fl2 tinyint
) engine=myisam;
insert into name(nm) select seq from seq_1_to_1000 order by rand(17);
insert into flag2(fl2) select seq mod 2 from seq_1_to_1000 order by rand(19);
insert into t1(nm,fl2)
select nm, fl2 from name, flag2 where name.pk = flag2.pk;
analyze table t1 persistent for all;
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	Engine-independent statistics collected
test.t1	analyze	status	Table is already up to date
set optimizer_trace="enabled=on";
set optimizer_switch='rowid_filter=on';
set statement optimizer_adjust_secondary_key_costs=0 for
explain select * from t1  where nm like '500%' AND fl2 = 0;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	idx1,idx2	idx1	35	NULL	1	Using index condition; Using where
Warnings:
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
set @trace=(select trace from information_schema.optimizer_trace);
select json_detailed(json_extract(@trace, '$**.considered_access_paths'));
json_detailed(json_extract(@trace, '$**.considered_access_paths'))
[
    [
        {
            "access_type": "ref",
            "index": "idx2",
            "used_range_estimates": true,
            "filter": 
            {
                "rowid_filter_index": "idx1",
                "index_only_cost": 0.045598762,
                "filter_startup_cost": 0.000899465,
                "find_key_and_filter_lookup_cost": 0.03086808,
                "filter_selectivity": 0.001,
                "original_rows": 492,
                "new_rows": 0.492,
                "original_access_cost": 0.59235049,
                "with_filter_access_cost": 0.077013594,
                "original_found_rows_cost": 0.546751728,
                "with_filter_found_rows_cost": 5.467517e-4,
                "org_cost": 0.60809449,
                "filter_cost": 0.077928803,
                "filter_used": true
            },
            "rows": 0.492,
            "cost": 0.077928803,
            "chosen": true
        },
        {
            "filter": 
            {
                "rowid_filter_index": "idx2",
                "index_only_cost": 0.000881127,
                "filter_startup_cost": 0.066293508,
                "find_key_and_filter_lookup_cost": 8.646449e-5,
                "filter_selectivity": 0.492,
                "original_rows": 1,
                "new_rows": 0.492,
                "original_access_cost": 0.001992411,
                "with_filter_access_cost": 0.001514343,
                "original_found_rows_cost": 0.001111284,
                "with_filter_found_rows_cost": 5.467517e-4,
                "org_cost": 0.002024411,
                "filter_cost": 0.067823595,
                "filter_used": false
            },
            "access_type": "range",
            "range_index": "idx1",
            "rows": 1,
            "rows_after_filter": 1,
            "rows_out": 0.492,
            "cost": 0.002574553,
            "chosen": true
        }
    ]
]

The following trace should have a different rowid_filter_key cost

set statement optimizer_adjust_secondary_key_costs=2 for
explain select * from t1  where nm like '500%' AND fl2 = 0;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	idx1,idx2	idx1	35	NULL	1	Using index condition; Using where
Warnings:
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
set @trace=(select trace from information_schema.optimizer_trace);
select json_detailed(json_extract(@trace, '$**.considered_access_paths'));
json_detailed(json_extract(@trace, '$**.considered_access_paths'))
[
    [
        {
            "access_type": "ref",
            "index": "idx2",
            "used_range_estimates": true,
            "filter": 
            {
                "rowid_filter_index": "idx1",
                "index_only_cost": 0.045598762,
                "filter_startup_cost": 0.000899465,
                "find_key_and_filter_lookup_cost": 0.03086808,
                "filter_selectivity": 0.001,
                "original_rows": 492,
                "new_rows": 0.492,
                "original_access_cost": 0.59235049,
                "with_filter_access_cost": 0.077013594,
                "original_found_rows_cost": 0.546751728,
                "with_filter_found_rows_cost": 5.467517e-4,
                "org_cost": 0.60809449,
                "filter_cost": 0.077928803,
                "filter_used": true
            },
            "rows": 0.492,
            "cost": 0.077928803,
            "chosen": true
        },
        {
            "filter": 
            {
                "rowid_filter_index": "idx2",
                "index_only_cost": 0.000881127,
                "filter_startup_cost": 0.066293508,
                "find_key_and_filter_lookup_cost": 8.646449e-5,
                "filter_selectivity": 0.492,
                "original_rows": 1,
                "new_rows": 0.492,
                "original_access_cost": 0.001992411,
                "with_filter_access_cost": 0.001514343,
                "original_found_rows_cost": 0.001111284,
                "with_filter_found_rows_cost": 5.467517e-4,
                "org_cost": 0.002024411,
                "filter_cost": 0.067823595,
                "filter_used": false
            },
            "access_type": "range",
            "range_index": "idx1",
            "rows": 1,
            "rows_after_filter": 1,
            "rows_out": 0.492,
            "cost": 0.002574553,
            "chosen": true
        }
    ]
]
drop table t1, name, flag2;
select @@optimizer_adjust_secondary_key_costs;
@@optimizer_adjust_secondary_key_costs
0
set @@optimizer_adjust_secondary_key_costs=7;
Warnings:
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning	1292	Truncated incorrect optimizer_adjust_secondary_ke... value: '7'
select @@optimizer_adjust_secondary_key_costs;
@@optimizer_adjust_secondary_key_costs
2
set @@optimizer_adjust_secondary_key_costs=default;
Warnings:
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
#
# MDEV-34664: fix_innodb_cardinality
#
set @save_userstat=@@global.userstat;
set @save_ispsp=@@global.innodb_stats_persistent_sample_pages;
set @@global.innodb_stats_persistent_sample_pages=20;
set @@global.userstat=on;
set use_stat_tables=PREFERABLY_FOR_QUERIES;
create or replace table t1 (a int primary key, b int, c int, d int, key(b,c,d)) engine=innodb;
insert into t1 select seq,seq/100,seq/60,seq/10 from seq_1_to_1000;
create or replace table t2 (a int);
insert into t2 values (1),(2),(3);
analyze table t1;
Table	Op	Msg_type	Msg_text
test.t1	analyze	status	OK
select count(distinct b),count(distinct b,c), count(distinct b,c,d) from t1;
count(distinct b)	count(distinct b,c)	count(distinct b,c,d)
11	25	125
show index from t1;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment	Index_comment	Ignored
t1	0	PRIMARY	1	a	A	1000	NULL	NULL		BTREE			NO
t1	1	b	1	b	A	11	NULL	NULL	YES	BTREE			NO
t1	1	b	2	c	A	25	NULL	NULL	YES	BTREE			NO
t1	1	b	3	d	A	125	NULL	NULL	YES	BTREE			NO
explain select * from t1,t2 where t1.b=t2.a;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t2	ALL	NULL	NULL	NULL	NULL	3	Using where
1	SIMPLE	t1	ref	b	b	5	test.t2.a	90	Using index
set @@optimizer_adjust_secondary_key_costs=8;
Warnings:
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release
Warning	1292	Truncated incorrect optimizer_adjust_secondary_ke... value: '8'
explain select * from t1,t2 where t1.b=t2.a;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t2	ALL	NULL	NULL	NULL	NULL	3	Using where
1	SIMPLE	t1	ref	b	b	5	test.t2.a	90	Using index
show index from t1;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment	Index_comment	Ignored
t1	0	PRIMARY	1	a	A	1000	NULL	NULL		BTREE			NO
t1	1	b	1	b	A	11	NULL	NULL	YES	BTREE			NO
t1	1	b	2	c	A	25	NULL	NULL	YES	BTREE			NO
t1	1	b	3	d	A	125	NULL	NULL	YES	BTREE			NO
flush tables;
explain select * from t1,t2 where t1.b=t2.a;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t2	ALL	NULL	NULL	NULL	NULL	3	Using where
1	SIMPLE	t1	ref	b	b	5	test.t2.a	90	Using index
show index from t1;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment	Index_comment	Ignored
t1	0	PRIMARY	1	a	A	1000	NULL	NULL		BTREE			NO
t1	1	b	1	b	A	11	NULL	NULL	YES	BTREE			NO
t1	1	b	2	c	A	25	NULL	NULL	YES	BTREE			NO
t1	1	b	3	d	A	125	NULL	NULL	YES	BTREE			NO
connect  user2, localhost, root,,;
show index from t1;
Table	Non_unique	Key_name	Seq_in_index	Column_name	Collation	Cardinality	Sub_part	Packed	Null	Index_type	Comment	Index_comment	Ignored
t1	0	PRIMARY	1	a	A	1000	NULL	NULL		BTREE			NO
t1	1	b	1	b	A	11	NULL	NULL	YES	BTREE			NO
t1	1	b	2	c	A	25	NULL	NULL	YES	BTREE			NO
t1	1	b	3	d	A	125	NULL	NULL	YES	BTREE			NO
connection default;
disconnect user2;
drop table t1,t2;
set global userstat=@save_userstat;
set global innodb_stats_persistent_sample_pages=@save_ispsp;
set @@optimizer_adjust_secondary_key_costs=default;
Warnings:
Warning	4200	The variable '@@optimizer_adjust_secondary_key_costs' is ignored. It only exists for compatibility with old installations and will be removed in a future release