mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
MBug#702303: Spurious use statements in output from mysqlbinlog --rewrite-db="a->b"
This commit is contained in:
31
mysql-test/t/mysqlbinlog-innodb.test
Normal file
31
mysql-test/t/mysqlbinlog-innodb.test
Normal file
@@ -0,0 +1,31 @@
|
||||
-- source include/have_binlog_format_statement.inc
|
||||
-- source include/have_log_bin.inc
|
||||
-- source include/have_innodb.inc
|
||||
|
||||
#
|
||||
# MBug#702303: Spurious `use` statements in output from mysqlbinlog --rewrite-db="a->b"
|
||||
#
|
||||
let $MYSQLD_DATADIR= `select @@datadir`;
|
||||
SET TIMESTAMP=1000000000;
|
||||
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=innodb;
|
||||
CREATE DATABASE test2;
|
||||
|
||||
RESET MASTER;
|
||||
USE test2;
|
||||
BEGIN;
|
||||
USE test;
|
||||
INSERT INTO t1 VALUES (1);
|
||||
USE test2;
|
||||
COMMIT;
|
||||
BEGIN;
|
||||
USE test;
|
||||
INSERT INTO t1 VALUES (2);
|
||||
USE test2;
|
||||
COMMIT;
|
||||
USE test;
|
||||
SELECT * FROM t1 ORDER BY a;
|
||||
FLUSH LOGS;
|
||||
--exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000001 --short-form
|
||||
--exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000001 --short-form --rewrite-db="test->foo" --rewrite-db="test2->bar"
|
||||
DROP DATABASE test2;
|
||||
DROP TABLE t1;
|
||||
Reference in New Issue
Block a user