1
0
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:
Lena Startseva
2022-09-23 19:47:13 +07:00
274 changed files with 1896 additions and 175 deletions

View File

@ -1613,6 +1613,7 @@ drop view v1;
create view v2 as select bug11555_2();
drop view v2;
# But we should hide name of missing implicitly used table when we use view
--disable_view_protocol
create table t1 (i int);
create view v1 as select bug11555_1();
create view v2 as select bug11555_2();
@ -1628,6 +1629,7 @@ select * from v3;
# another form of view usage.
create view v4 as select * from v1;
drop view v1, v2, v3, v4;
--enable_view_protocol
# We also should hide details about broken triggers which are
# invoked for view.
drop function bug11555_1;