Current Path : /home/usr.opt/mysql57/mysql-test/suite/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/rpl/r/default_row_format_02.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] stop slave; SET GLOBAL SQL_SLAVE_SKIP_COUNTER=4; start slave; USE test; SELECT @@innodb_default_row_format; @@innodb_default_row_format dynamic CREATE TABLE tab(a INT PRIMARY KEY, b VARCHAR(5000),KEY idx1(b(3070))) ENGINE= InnoDB; INSERT INTO tab(a,b) VALUES(1,'Check with max prefix'); include/sync_slave_sql_with_master.inc SELECT @@innodb_default_row_format; @@innodb_default_row_format compact SHOW CREATE TABLE tab; ERROR 42S02: Table 'test.tab' doesn't exist DROP TABLE tab; include/sync_slave_sql_with_master.inc include/rpl_end.inc