mirror of
https://github.com/MariaDB/server.git
synced 2026-04-27 02:35:29 +02:00
Merge 10.3 into 10.4
We disable the MDEV-21189 test galera.galera_partition because it times out.
This commit is contained in:
commit
8fa759a576
121 changed files with 4305 additions and 3772 deletions
|
|
@ -1183,6 +1183,25 @@ with columns as (select 1 as t) select * from columns;
|
|||
|
||||
use test;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-18460: Server crashed in strmake / tdc_create_key /
|
||||
--echo # THD::create_tmp_table_def_key
|
||||
--echo #
|
||||
|
||||
--connect con1,localhost,root,,
|
||||
--change_user root,,
|
||||
|
||||
CREATE TEMPORARY TABLE test.t (a INT);
|
||||
WITH cte AS (SELECT 1) SELECT * FROM cte;
|
||||
WITH t AS (SELECT 1) SELECT * FROM t;
|
||||
--error ER_NO_DB_ERROR
|
||||
WITH cte AS (SELECT 1) SELECT * FROM t;
|
||||
DROP TABLE test.t;
|
||||
|
||||
--connection default
|
||||
--disconnect con1
|
||||
|
||||
--echo # End of 10.2 tests
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-20730: Syntax error on SELECT INTO @variable with CTE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue