mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
22 lines
612 B
Text
22 lines
612 B
Text
|
source include/have_log_bin.inc;
|
||
|
source include/have_debug.inc;
|
||
|
|
||
|
let datadir=`select @@datadir`;
|
||
|
RESET MASTER;
|
||
|
CREATE TABLE t1 (a INT);
|
||
|
INSERT INTO t1 VALUES (1),(2),(3);
|
||
|
REPLACE INTO t1 VALUES (4);
|
||
|
DROP TABLE t1;
|
||
|
FLUSH LOGS;
|
||
|
|
||
|
let filename= master-bin.000001;
|
||
|
let local=$datadir/$filename;
|
||
|
let remote=--read-from-remote-server --protocol=tcp --host=127.0.0.1 --port=$MASTER_MYPORT -uroot $filename;
|
||
|
let outfile=$MYSQLTEST_VARDIR/tmp/binlog_enc.sql;
|
||
|
--error 1
|
||
|
exec $MYSQL_BINLOG $local > $outfile;
|
||
|
exec $MYSQL_BINLOG $local --force-read >> $outfile;
|
||
|
exec $MYSQL_BINLOG $remote >> $outfile;
|
||
|
remove_file $outfile;
|
||
|
|