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

Merge tag '11.4' into 11.6

MariaDB 11.4.4 release
This commit is contained in:
Oleksandr Byelkin
2024-11-08 07:17:00 +01:00
743 changed files with 10281 additions and 4508 deletions

View File

@ -6245,7 +6245,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;
@ -6258,8 +6258,7 @@ EXPLAIN
{
"table": {
"table_name": "a",
"access_type": "range",
"possible_keys": ["PRIMARY"],
"access_type": "index",
"key": "PRIMARY",
"key_length": "4",
"used_key_parts": ["a"],
@ -6267,7 +6266,6 @@ EXPLAIN
"rows": 10,
"cost": "COST_REPLACED",
"filtered": 100,
"attached_condition": "a.a <= 10",
"using_index": true
}
},
@ -6283,14 +6281,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"
}
}
]