mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
14 lines
587 B
Plaintext
14 lines
587 B
Plaintext
#
|
|
# MDEV-4260 Don't create frm files for temporary tables
|
|
#
|
|
create table t1 select * from information_schema.session_status where variable_name like 'Opened%';
|
|
create temporary table t2 (a int) engine=memory;
|
|
select variable_name, session_status.variable_value - t1.variable_value
|
|
from information_schema.session_status join t1 using (variable_name);
|
|
let $tmpdir= `select @@tmpdir`;
|
|
--list_files $tmpdir/ #sql*
|
|
truncate table t2;
|
|
select variable_name, session_status.variable_value - t1.variable_value
|
|
from information_schema.session_status join t1 using (variable_name);
|
|
drop table t1;
|