mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
b913b2e7c2
Updated from Tomas review
58 lines
1.2 KiB
Text
58 lines
1.2 KiB
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
DROP DATABASE IF EXISTS replica;
|
|
CREATE DATABASE replica;
|
|
CREATE TABLE t1 (a INT NOT NULL KEY, b text NOT NULL)ENGINE=NDB;
|
|
CREATE TABLE t2 (a INT NOT NULL KEY, b text NOT NULL)ENGINE=NDB;
|
|
USE replica;
|
|
CREATE TABLE replica.t1 (a INT NOT NULL KEY, b text NOT NULL)ENGINE=NDB;
|
|
CREATE TABLE replica.t2 (a INT NOT NULL KEY, b text NOT NULL)ENGINE=NDB;
|
|
USE test;
|
|
INSERT INTO t1 VALUES(1, repeat('abc',10));
|
|
INSERT INTO t2 VALUES(1, repeat('abc',10));
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
t1
|
|
t2
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
1
|
|
SELECT COUNT(*) FROM t2;
|
|
COUNT(*)
|
|
1
|
|
USE replica;
|
|
INSERT INTO replica.t1 VALUES(2, repeat('def',200));
|
|
INSERT INTO replica.t2 VALUES(2, repeat('def',200));
|
|
SHOW TABLES;
|
|
Tables_in_replica
|
|
t1
|
|
t2
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
1
|
|
SELECT COUNT(*) FROM t2;
|
|
COUNT(*)
|
|
1
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
USE replica;
|
|
SHOW TABLES;
|
|
Tables_in_replica
|
|
t1
|
|
t2
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
1
|
|
SELECT COUNT(*) FROM t2;
|
|
COUNT(*)
|
|
1
|
|
USE test;
|
|
SHOW TABLES;
|
|
Tables_in_test
|
|
USE test;
|
|
DROP TABLE t1, t2;
|
|
DROP DATABASE IF EXISTS replica;
|