1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge branch 'bb-10.9-all-builders' into bb-10.10-all-builders

This commit is contained in:
Lena Startseva
2022-09-28 09:40:17 +07:00
324 changed files with 2239 additions and 198 deletions

View File

@ -142,6 +142,9 @@ DROP TABLE t1;
--echo #
--echo # MDEV-21028 Server crashes in Query_arena::set_query_arena upon SELECT from view
--echo #
#view protocol generates additional statistics
--disable_view_protocol
create table t1 (a datetime default current_timestamp);
insert into t1 () values (),();
create algorithm=temptable view v1 as select * from t1;
@ -151,6 +154,8 @@ select default(a) = now() from v2;
drop view v1, v2;
drop table t1;
--enable_view_protocol
create table t1 (v1 timestamp not null default now() on update now()) select 'x';
show create table t1;
select default(v1) from (select v1 from t1) dt;