1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge 10.11 into 11.0

This commit is contained in:
Marko Mäkelä
2023-06-08 13:49:48 +03:00
140 changed files with 3872 additions and 1725 deletions

View File

@ -608,7 +608,7 @@ id select_type table type possible_keys key key_len ref rows Extra
#
explain select count(*) from t3 as t1,t3 where t1.period=t3.period order by t3.period;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index period period 4 NULL 41810 Using index
1 SIMPLE t1 index period period 4 NULL 41810 Using where; Using index
1 SIMPLE t3 ref period period 4 test.t1.period 4181 Using index
explain select sum(t1.price+t3.price) from t3 as t1,t3 where t1.period=t3.period order by t3.period;
id select_type table type possible_keys key key_len ref rows Extra