Current Path : /home/usr.opt/mysql57/mysql-test/suite/ndb_rpl/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/ndb_rpl/r/ndb_rpl_do_table.result |
include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] DROP TABLE IF EXISTS t1, t2; 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)); SHOW TABLES; Tables_in_test t1 SELECT COUNT(*) FROM t1; COUNT(*) 3 INSERT INTO t1 VALUES (3, repeat('bad',1)); ERROR 23000: Duplicate entry '3' for key 'PRIMARY' INSERT INTO t1 VALUES (3, repeat('bad too',1)); ERROR 23000: Duplicate entry '3' for key 'PRIMARY' DROP TABLE IF EXISTS t1, t2; include/rpl_end.inc