Server IP : 49.212.180.16 / Your IP : 18.191.141.17 Web Server : Apache System : FreeBSD www2606.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64 User : utannto ( 1076) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/rs/mysql/5.1/mysql-test/suite/rpl_ndb/t/ |
Upload File : |
########################################################### # Author: Jeb # Date: 14-12-2006 # Purpose: To test --replicate-do-table=db_name.tbl_name # using cluster. Only t1 should replicate. ########################################################## --source include/have_ndb.inc --source include/ndb_master-slave.inc --disable_warnings DROP TABLE IF EXISTS t1, t2; --enable_warnings 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; INSERT INTO t1 VALUES(1, repeat('abc',10)); INSERT INTO t1 VALUES(2, repeat('def',200)); INSERT INTO t1 VALUES(3, repeat('ghi',3000)); INSERT INTO t2 VALUES(1, repeat('abc',10)); INSERT INTO t2 VALUES(2, repeat('def',200)); INSERT INTO t2 VALUES(3, repeat('ghi',3000)); --sync_slave_with_master SHOW TABLES; SELECT COUNT(*) FROM t1; # # Bug #27044 replicated with unique field ndb table allows dup key inserts # connection master; --error ER_DUP_ENTRY INSERT INTO t1 VALUES (3, repeat('bad',1)); connection slave; --error ER_DUP_ENTRY INSERT INTO t1 VALUES (3, repeat('bad too',1)); # cleanup connection master; DROP TABLE IF EXISTS t1, t2; --sync_slave_with_master --source include/rpl_end.inc