mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
fix encryption.tempfiles to check that encrypt_tmp_files is ON
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
|
select @@encrypt_tmp_files;
|
||||||
|
@@encrypt_tmp_files
|
||||||
|
1
|
||||||
CREATE TABLE t1(a INT);
|
CREATE TABLE t1(a INT);
|
||||||
INSERT INTO t1 VALUES(1),(2);
|
INSERT INTO t1 VALUES(1),(2);
|
||||||
DELETE FROM t1 WHERE a=1;
|
DELETE FROM t1 WHERE a=1;
|
||||||
|
1
mysql-test/suite/encryption/t/tempfiles.opt
Normal file
1
mysql-test/suite/encryption/t/tempfiles.opt
Normal file
@ -0,0 +1 @@
|
|||||||
|
--encrypt-tmp-files
|
@ -11,6 +11,8 @@ source include/have_binlog_format_row.inc;
|
|||||||
# engine. But there's no need to run it twice for InnoDB and XtraDB.
|
# engine. But there's no need to run it twice for InnoDB and XtraDB.
|
||||||
source include/have_xtradb.inc;
|
source include/have_xtradb.inc;
|
||||||
|
|
||||||
|
select @@encrypt_tmp_files;
|
||||||
|
|
||||||
#
|
#
|
||||||
# MyISAM messing around with IO_CACHE::file
|
# MyISAM messing around with IO_CACHE::file
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user