Merge 10.3 into 10.4

We disable the MDEV-21189 test galera.galera_partition
because it times out.
This commit is contained in:
Marko Mäkelä 2019-12-13 17:30:37 +02:00
commit 8fa759a576
121 changed files with 4305 additions and 3772 deletions

View file

@ -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