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

Check of temporary tables hiding for query fetched from QC (BUG#6084)

This commit is contained in:
bell@sanja.is.com.ua
2004-10-21 23:56:12 +03:00
parent b32ffec8fd
commit ded12c828d
4 changed files with 59 additions and 1 deletions

View File

@ -704,4 +704,17 @@ Qcache_queries_in_cache 1
unlock table;
drop table t1,t2;
set query_cache_wlock_invalidate=default;
CREATE TABLE t1 (id INT PRIMARY KEY);
insert into t1 values (1),(2),(3);
select * from t1;
id
1
2
3
create temporary table t1 (a int not null auto_increment
primary key);
select * from t1;
a
drop table t1;
drop table t1;
set GLOBAL query_cache_size=0;