mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
@ -2208,12 +2208,42 @@ Qcache_queries_in_cache 0
|
||||
DROP FUNCTION foo;
|
||||
drop table t1;
|
||||
#
|
||||
# MDEV-33861: main.query_cache fails with embedded after
|
||||
# enabling WITH_PROTECT_STATEMENT_MEMROOT
|
||||
#
|
||||
create table t1 (s1 int);
|
||||
create procedure f3 () begin
|
||||
select * from t1;
|
||||
end;
|
||||
//
|
||||
create procedure f4 () begin
|
||||
select * from t1;
|
||||
end;
|
||||
//
|
||||
Call f4();
|
||||
s1
|
||||
cAll f3();
|
||||
s1
|
||||
insert into t1 values (2);
|
||||
caLl f3();
|
||||
s1
|
||||
2
|
||||
drop procedure f3;
|
||||
drop procedure f4;
|
||||
drop table t1;
|
||||
#
|
||||
# End of 10.4 tests
|
||||
#
|
||||
#
|
||||
# MDEV-24858 SIGABRT in DbugExit from my_malloc in Query_cache::init_cache Regression
|
||||
#
|
||||
SET @qc= @@query_cache_size;
|
||||
set global Query_cache_size=18446744073709547520;
|
||||
SET GLOBAL query_cache_size= @qc;
|
||||
#
|
||||
# End of 10.5 tests
|
||||
#
|
||||
#
|
||||
# MDEV-22301 JSON_TABLE: Queries are not inserted into query cache.
|
||||
#
|
||||
create table t1 (a text);
|
||||
@ -2239,6 +2269,7 @@ DROP TABLE t;
|
||||
restore defaults
|
||||
SET GLOBAL query_cache_type= default;
|
||||
SET GLOBAL query_cache_size=@save_query_cache_size;
|
||||
# End of 10.6 tests
|
||||
#
|
||||
# MDEV-29028: Queries using RANDOM_BYTES get stored in query cache
|
||||
#
|
||||
@ -2261,6 +2292,4 @@ improbable
|
||||
0
|
||||
drop table t1;
|
||||
set global query_cache_type= @qcache;
|
||||
#
|
||||
# End of 10.10 tests
|
||||
#
|
||||
|
Reference in New Issue
Block a user