mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
23 lines
795 B
Text
23 lines
795 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
connection master;
|
|
CREATE TABLE t1 (a int) ENGINE=MyISAM;
|
|
CREATE TABLE t2 (a int) ENGINE=MyISAM;
|
|
INSERT INTO t1 VALUES (1), (2), (3);
|
|
INSERT INTO t2 VALUES (4), (5), (6);
|
|
CREATE TEMPORARY TABLE IF NOT EXISTS tt1_merge LIKE t1;
|
|
ALTER TABLE tt1_merge ENGINE=MERGE UNION (t2, t1);
|
|
CREATE TABLE t1_merge LIKE tt1_merge;
|
|
connection slave;
|
|
include/diff_tables.inc [master:test.t1, slave:test.t1]
|
|
include/diff_tables.inc [master:test.t2, slave:test.t2]
|
|
connection master;
|
|
UPDATE t1_merge SET a=10 WHERE a=1;
|
|
DELETE FROM t1_merge WHERE a=10;
|
|
connection slave;
|
|
connection master;
|
|
include/diff_tables.inc [master:test.t1, slave:test.t1]
|
|
include/diff_tables.inc [master:test.t2, slave:test.t2]
|
|
DROP TABLE t1_merge, t1, t2;
|
|
connection slave;
|
|
include/rpl_end.inc
|