1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge branch '10.11' into 11.2

This commit is contained in:
Oleksandr Byelkin
2024-10-29 16:39:47 +01:00
660 changed files with 8148 additions and 3604 deletions

View File

@ -6244,7 +6244,7 @@ explain format=json
select *
from t1 a, t3 b
where
b.kp1=a.a and
b.kp1+1=a.a+1 and
b.kp1 <= 10 and
b.kp2 <= 10 and
b.col1 +1 < 33333;
@ -6257,8 +6257,7 @@ EXPLAIN
{
"table": {
"table_name": "a",
"access_type": "range",
"possible_keys": ["PRIMARY"],
"access_type": "index",
"key": "PRIMARY",
"key_length": "4",
"used_key_parts": ["a"],
@ -6266,7 +6265,6 @@ EXPLAIN
"rows": 10,
"cost": "COST_REPLACED",
"filtered": 100,
"attached_condition": "a.a <= 10",
"using_index": true
}
},
@ -6282,14 +6280,14 @@ EXPLAIN
"loops": 10,
"rows": 836,
"cost": "COST_REPLACED",
"filtered": 9.090909004,
"index_condition": "b.kp2 <= 10",
"attached_condition": "b.kp2 <= 10 and b.col1 + 1 < 33333"
"filtered": 100,
"index_condition": "b.kp1 <= 10 and b.kp2 <= 10",
"attached_condition": "b.kp1 <= 10 and b.kp2 <= 10 and b.col1 + 1 < 33333"
},
"buffer_type": "flat",
"buffer_size": "54",
"join_type": "BNL",
"attached_condition": "b.kp1 = a.a"
"attached_condition": "b.kp1 + 1 = a.a + 1"
}
}
]