mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch 'bb-10.3-all-builders' into bb-10.4-all-builders
This commit is contained in:
@ -1668,6 +1668,8 @@ drop table t1;
|
||||
deallocate prepare stmt;
|
||||
create table t1 (a int);
|
||||
insert into t1 (a) values (1);
|
||||
#t2-temporary table, cannot create a temporary view
|
||||
--disable_view_protocol
|
||||
prepare stmt from "create temporary table if not exists t2 as select * from t1";
|
||||
execute stmt;
|
||||
drop table t2;
|
||||
@ -1694,6 +1696,7 @@ drop table t1;
|
||||
drop temporary table t2;
|
||||
drop table t2;
|
||||
deallocate prepare stmt;
|
||||
--enable_view_protocol
|
||||
|
||||
create table t1 (a int);
|
||||
prepare stmt from "create table t2 like t1";
|
||||
|
Reference in New Issue
Block a user