summaryrefslogtreecommitdiff
path: root/mysql-test/main/opt_trace_selectivity.result
blob: d6abad79637194a4d403f1e258bb63cfca20427b (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
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
create or replace table t1 (a int, b int, c int, key(a,c), key(b,c), key (c,b)) engine=aria;
insert into t1 select seq/100+1, mod(seq,10), mod(seq,15) from seq_1_to_10000;
insert into t1 select seq/100+1, mod(seq,10), 10 from seq_1_to_1000;
optimize table t1;
Table	Op	Msg_type	Msg_text
test.t1	optimize	status	OK
select count(*) from t1 where a=2;
count(*)
200
select count(*) from t1 where b=5;
count(*)
1100
select count(*) from t1 where c=5;
count(*)
667
select count(*) from t1 where c=10;
count(*)
1667
select count(*) from t1 where a=2 and b=5;
count(*)
20
select count(*) from t1 where c=10 and b=5;
count(*)
433
select count(*) from t1 where c=5 and b=5;
count(*)
334
set optimizer_trace="enabled=on";
select count(*) from t1 where a=2 and b=5 and c=10;
count(*)
14
set @trace=(select trace from INFORMATION_SCHEMA.OPTIMIZER_TRACE);
select 
JSON_DETAILED(
JSON_EXTRACT(
JSON_EXTRACT(@trace, '$**.considered_execution_plans'),
'$[0]'
    )
) as JS;
JS
[
    {
        "plan_prefix": "",
        "get_costs_for_tables": 
        [
            {
                "best_access_path": 
                {
                    "table": "t1",
                    "plan_details": 
                    {
                        "record_count": 1
                    },
                    "considered_access_paths": 
                    [
                        {
                            "access_type": "ref",
                            "index": "a",
                            "used_range_estimates": true,
                            "rows": 104,
                            "cost": 0.060988785,
                            "chosen": true
                        },
                        {
                            "access_type": "ref",
                            "index": "b",
                            "used_range_estimates": true,
                            "rows": 340,
                            "cost": 0.141618657,
                            "chosen": false,
                            "cause": "cost"
                        },
                        {
                            "access_type": "ref",
                            "index": "c",
                            "used_range_estimates": true,
                            "rows": 632,
                            "cost": 0.241826241,
                            "chosen": false,
                            "cause": "cost"
                        },
                        {
                            "access_type": "index_merge",
                            "rows": 7,
                            "rows_after_filter": 7,
                            "rows_out": 7,
                            "cost": 0.045367017,
                            "chosen": true
                        }
                    ],
                    "chosen_access_method": 
                    {
                        "type": "index_merge",
                        "rows_read": 7,
                        "rows_out": 7,
                        "cost": 0.045367017,
                        "uses_join_buffering": false
                    }
                }
            }
        ]
    },
    {
        "plan_prefix": "",
        "table": "t1",
        "rows_for_plan": 7,
        "cost_for_plan": 0.045367017
    }
]
select JSON_DETAILED(JSON_EXTRACT(@trace, '$**.selectivity_for_indexes')) as JS;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.009454545
        },
        {
            "index_name": "b",
            "selectivity_from_index": 0.1
        },
        {
            "use_opt_range_condition_rows_selectivity": 6.363636e-4
        }
    ]
]
select count(*) from t1 where a=2 and b=5 and c=5;
count(*)
3
set @trace=(select trace from INFORMATION_SCHEMA.OPTIMIZER_TRACE);
select 
JSON_DETAILED(
JSON_EXTRACT(
JSON_EXTRACT(@trace, '$**.considered_execution_plans'),
'$[0]'
    )
) as JS;
JS
[
    {
        "plan_prefix": "",
        "get_costs_for_tables": 
        [
            {
                "best_access_path": 
                {
                    "table": "t1",
                    "plan_details": 
                    {
                        "record_count": 1
                    },
                    "considered_access_paths": 
                    [
                        {
                            "access_type": "ref",
                            "index": "a",
                            "used_range_estimates": true,
                            "rows": 6,
                            "cost": 0.005388489,
                            "chosen": true
                        },
                        {
                            "access_type": "ref",
                            "index": "b",
                            "used_range_estimates": true,
                            "rows": 232,
                            "cost": 0.104720241,
                            "chosen": false,
                            "cause": "cost"
                        },
                        {
                            "access_type": "ref",
                            "index": "c",
                            "used_range_estimates": true,
                            "rows": 293,
                            "cost": 0.125561013,
                            "chosen": false,
                            "cause": "cost"
                        },
                        {
                            "type": "scan",
                            "chosen": false,
                            "cause": "cost"
                        }
                    ],
                    "chosen_access_method": 
                    {
                        "type": "ref",
                        "rows_read": 6,
                        "rows_out": 0.6,
                        "cost": 0.005388489,
                        "uses_join_buffering": false
                    }
                }
            }
        ]
    },
    {
        "plan_prefix": "",
        "table": "t1",
        "rows_for_plan": 0.6,
        "cost_for_plan": 0.005388489,
        "pushdown_cond_selectivity": 0.1,
        "filtered": 10,
        "rows_out": 0.6
    }
]
select JSON_DETAILED(JSON_EXTRACT(@trace, '$**.selectivity_for_indexes')) as JS;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 5.454545e-4
        },
        {
            "index_name": "b",
            "selectivity_from_index": 0.1
        }
    ]
]
# Ensure that we only use selectivity from non used index for simple cases
select count(*) from t1 where (a=2 and b= 5);
count(*)
20
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.017545455
        },
        {
            "index_name": "b",
            "selectivity_from_index": 0.073181818
        }
    ]
]
# All of the following should have selectivity=1 for index 'b'
select count(*) from t1 where (a=2 and b between 0 and 100);
count(*)
200
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.017545455
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
select count(*) from t1 where (a in (2,3) and b between 0 and 100);
count(*)
400
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.035090909
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
select count(*) from t1 where (a>2 and b between 0 and 100);
count(*)
10702
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.973909091
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
select count(*) from t1 where (a>=2 and b between 0 and 100);
count(*)
10902
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.991454545
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
select count(*) from t1 where (a<=2 and b between 0 and 100);
count(*)
298
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.026181818
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
select count(*) from t1 where (a<2 and b between 0 and 100);
count(*)
98
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.008636364
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
select count(*) from t1 where (a between 2 and 3 and b between 0 and 100);
count(*)
400
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_indexes')) as JS
from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
    [
        {
            "index_name": "a",
            "selectivity_from_index": 0.035090909
        },
        {
            "index_name": "b",
            "selectivity_from_index": 1
        }
    ]
]
drop table t1;
set optimizer_trace='enabled=off';