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

Merge 10.6 into 10.11

This commit is contained in:
Marko Mäkelä
2024-10-03 10:55:08 +03:00
519 changed files with 5110 additions and 993 deletions

View File

@ -424,6 +424,7 @@ EXPLAIN SELECT * FROM t100,t10000,t10;
EXPLAIN SELECT * FROM t10000,t10,t100;
EXPLAIN SELECT * FROM t10000,t100,t10;
--disable_cursor_protocol
######
## Ordering between T100,T10000 EQ-joined T10 will
## normally be with smallest EQ-table joined first
@ -492,7 +493,6 @@ WHERE t100.K=t10.I
AND t10000.K=t10.K;
--source include/check_qep.inc
#####
## EQ_REF Should be executed before table scan(ALL)
## - Independent of #records in table being EQ_REF-joined
@ -715,6 +715,7 @@ SELECT COUNT(*) FROM t10,t10000 y,t10000 x
WHERE x.k=t10.i
AND y.i=x.k;
--source include/check_qep.inc
--enable_cursor_protocol
########