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.0

This commit is contained in:
Sergei Golubchik
2023-12-19 09:32:57 +01:00
677 changed files with 27709 additions and 4975 deletions

View File

@ -2385,6 +2385,10 @@ key_len NULL
ref NULL
rows 6
Extra Using where
Warnings:
Level Note
Code 1105
Message Cannot use key `PRIMARY` part[0] for lookup: `test`.`bar`.`c` of type `char` > "2" of type `int`
EXPLAIN SELECT c FROM foo WHERE c>2;;
id 1
select_type SIMPLE
@ -2396,6 +2400,10 @@ key_len NULL
ref NULL
rows 6
Extra Using where
Warnings:
Level Note
Code 1105
Message Cannot use key `PRIMARY` part[0] for lookup: `test`.`foo`.`c` of type `char` > "2" of type `int`
EXPLAIN SELECT c FROM foo2 WHERE c>2;;
id 1
select_type SIMPLE
@ -2407,6 +2415,10 @@ key_len 5
ref NULL
rows 6
Extra Using where; Using index
Warnings:
Level Note
Code 1105
Message Cannot use key `PRIMARY` part[0] for lookup: `test`.`foo2`.`c` of type `char` > "2" of type `int`
DROP TABLE foo, bar, foo2;
#
# Bug#41348: INSERT INTO tbl SELECT * FROM temp_tbl overwrites locking type of temp table