mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '10.3' into 10.4
This commit is contained in:
1
mysql-test/suite/encryption/my.cnf
Normal file
1
mysql-test/suite/encryption/my.cnf
Normal file
@ -0,0 +1 @@
|
||||
!include include/default_my.cnf
|
@ -29,6 +29,7 @@ i 10
|
||||
j 10
|
||||
drop table t1;
|
||||
reset master;
|
||||
set @save_binlog_cache_size=@@global.binlog_cache_size;
|
||||
set global binlog_cache_size=8192;
|
||||
connect con1, localhost, root;
|
||||
create table t1 (a text) engine=innodb;
|
||||
@ -52,7 +53,7 @@ disconnect con2;
|
||||
connection default;
|
||||
flush binary logs;
|
||||
drop table t1, t2;
|
||||
set global binlog_cache_size=default;
|
||||
set @@global.binlog_cache_size=@save_binlog_cache_size;
|
||||
select left(a, 10) from t1;
|
||||
left(a, 10)
|
||||
1111111111
|
||||
|
@ -3,3 +3,4 @@
|
||||
--loose-file-key-management
|
||||
--loose-file-key-management-filename=$MYSQL_TEST_DIR/std_data/logkey.txt
|
||||
--file-key-management-encryption-algorithm=aes_cbc
|
||||
--innodb-log-file-size=5242880
|
||||
|
@ -32,6 +32,7 @@ select sql_big_result t,count(t) from t1 group by t limit 10;
|
||||
drop table t1;
|
||||
|
||||
reset master;
|
||||
set @save_binlog_cache_size=@@global.binlog_cache_size;
|
||||
set global binlog_cache_size=8192;
|
||||
|
||||
connect con1, localhost, root;
|
||||
@ -74,7 +75,7 @@ flush binary logs;
|
||||
|
||||
drop table t1, t2;
|
||||
|
||||
set global binlog_cache_size=default;
|
||||
set @@global.binlog_cache_size=@save_binlog_cache_size;
|
||||
|
||||
let $MYSQLD_DATADIR= `select @@datadir`;
|
||||
exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000001 | $MYSQL;
|
||||
|
Reference in New Issue
Block a user