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

Merge 10.2 into 10.3

This commit is contained in:
Marko Mäkelä
2019-04-07 11:49:50 +03:00
29 changed files with 376 additions and 436 deletions

View File

@ -1168,3 +1168,15 @@ select * from v1;
drop view v1;
drop table t1,t2;
--echo #
--echo # MDEV-19112: CTE usage when information_schema is set as default db
--echo #
with t as (select 1 as t ) select * from t;
use information_schema;
with t as (select 1 as t) select * from t;
with columns as (select 1 as t) select * from columns;
use test;