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:
@ -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;
|
||||
|
Reference in New Issue
Block a user