mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge branch '10.11' into 11.2
This commit is contained in:
@ -2151,6 +2151,21 @@ drop table t20, t21, t22;
|
||||
--echo # End of 10.3 tests
|
||||
--echo #
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-29351 SIGSEGV when doing forward reference of item in select list
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (a INT);
|
||||
--error ER_BAD_FIELD_ERROR
|
||||
UPDATE t1 SET c=1 ORDER BY (SELECT c);
|
||||
--error ER_BAD_FIELD_ERROR
|
||||
UPDATE t1 SET c=1 ORDER BY (SELECT c);
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.5 tests
|
||||
--echo #
|
||||
|
||||
--echo #
|
||||
--echo # Test new group_min_max optimization
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user