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

Merge 10.11 into 11.2

This commit is contained in:
Marko Mäkelä
2024-10-03 13:24:43 +03:00
548 changed files with 5714 additions and 1374 deletions

View File

@ -11,6 +11,7 @@ create table t2 (a int);
insert into t2 values (1),(2),(3);
create view v2 as select a from t2;
--disable_cursor_protocol
flush status;
select * from v2;
--disable_ps_protocol
@ -23,6 +24,7 @@ select * from (select * from t2) T1;
--disable_ps_protocol
show status like '%Created_tmp%';
--enable_ps_protocol
--enable_cursor_protocol
explain select * from (select * from t2) T1;