From 09bc99fac900648ea36b0a0e66fbf191c296a80a Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 19 Jul 2018 11:10:41 +0200 Subject: cleanup: remove extra/rpl_tests/rpl_foreign_key.test --- .../suite/rpl/r/rpl_foreign_key_innodb.result | 5 +- mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test | 63 ++++++++++++++++++++-- 2 files changed, 62 insertions(+), 6 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result b/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result index f778e76adc0..efe8155ec08 100644 --- a/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_foreign_key_innodb.result @@ -32,13 +32,12 @@ SET TIMESTAMP=1000000000; CREATE TABLE t3 ( a INT UNIQUE ); SET FOREIGN_KEY_CHECKS=0; INSERT INTO t3 VALUES (1),(1); -Got one of the listed errors +ERROR 23000: Duplicate entry '1' for key 'a' SET FOREIGN_KEY_CHECKS=0; DROP TABLE IF EXISTS t1,t2,t3; SET FOREIGN_KEY_CHECKS=1; create table t1 (b int primary key) engine = INNODB; -create table t2 (a int primary key, b int, foreign key (b) references t1(b)) -engine = INNODB; +create table t2 (a int primary key, b int, foreign key (b) references t1(b)) engine = INNODB; insert into t1 set b=1; insert into t2 set a=1, b=1; set foreign_key_checks=0; diff --git a/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test b/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test index ce28c0334ec..53db1723325 100644 --- a/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test +++ b/mysql-test/suite/rpl/t/rpl_foreign_key_innodb.test @@ -1,4 +1,61 @@ --- source include/not_ndb_default.inc -- source include/have_innodb.inc -let $engine_type=INNODB; --- source extra/rpl_tests/rpl_foreign_key.test + +# Check the replication of the FOREIGN_KEY_CHECKS variable. + +-- source include/master-slave.inc + +CREATE TABLE t1 (a INT AUTO_INCREMENT KEY) ENGINE=INNODB; +CREATE TABLE t2 (b INT AUTO_INCREMENT KEY, c INT, FOREIGN KEY(b) REFERENCES t1(a)) ENGINE=INNODB; + +SET FOREIGN_KEY_CHECKS=0; +INSERT INTO t1 VALUES (10); +INSERT INTO t1 VALUES (NULL),(NULL),(NULL); +INSERT INTO t2 VALUES (5,0); +INSERT INTO t2 VALUES (NULL,LAST_INSERT_ID()); +SET FOREIGN_KEY_CHECKS=1; +SELECT * FROM t1 ORDER BY a; +SELECT * FROM t2 ORDER BY b; +sync_slave_with_master; +SELECT * FROM t1 ORDER BY a; +SELECT * FROM t2 ORDER BY b; + +connection master; +SET TIMESTAMP=1000000000; +CREATE TABLE t3 ( a INT UNIQUE ); +SET FOREIGN_KEY_CHECKS=0; +--error ER_DUP_ENTRY +INSERT INTO t3 VALUES (1),(1); +sync_slave_with_master; + +connection master; +SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS t1,t2,t3; +SET FOREIGN_KEY_CHECKS=1; +sync_slave_with_master; + +# +# Bug #32468 delete rows event on a table with foreign key constraint fails +# + +connection master; + +create table t1 (b int primary key) engine = INNODB; +create table t2 (a int primary key, b int, foreign key (b) references t1(b)) engine = INNODB; + +insert into t1 set b=1; +insert into t2 set a=1, b=1; + +set foreign_key_checks=0; +delete from t1; + +--echo must sync w/o a problem (could not with the buggy code) +sync_slave_with_master; +select count(*) from t1 /* must be zero */; + + +# cleanup for bug#32468 + +connection master; +drop table t2,t1; + +--source include/rpl_end.inc -- cgit v1.2.1 From 865237e5af9e07ceabaadd1ba4cf327eeba0bb4f Mon Sep 17 00:00:00 2001 From: Sachin Date: Mon, 1 Oct 2018 15:15:34 +0530 Subject: Fix rpl_parallel_optimistic_nobinlog failure on binlog --- mysql-test/suite/rpl/t/rpl_parallel_optimistic_nobinlog.cnf | 1 + 1 file changed, 1 insertion(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/t/rpl_parallel_optimistic_nobinlog.cnf b/mysql-test/suite/rpl/t/rpl_parallel_optimistic_nobinlog.cnf index 0ea0d951568..b85a84f6625 100644 --- a/mysql-test/suite/rpl/t/rpl_parallel_optimistic_nobinlog.cnf +++ b/mysql-test/suite/rpl/t/rpl_parallel_optimistic_nobinlog.cnf @@ -5,5 +5,6 @@ log-slave-updates=0 loose-innodb [mysqld.2] +slave-transaction-retries=100 log-slave-updates=0 loose-innodb -- cgit v1.2.1 From 2f4a0c5be2c5d5153c4253a49ba8820ab333a9a0 Mon Sep 17 00:00:00 2001 From: Kristian Nielsen Date: Sun, 7 Oct 2018 18:59:52 +0200 Subject: Fix accumulation of old rows in mysql.gtid_slave_pos This would happen especially in optimistic parallel replication, where there is a good chance that a transaction will be rolled back (due to conflicts) after it has executed record_gtid(). If the transaction did any deletions of old rows as part of record_gtid(), those deletions will be undone as well. And the code did not properly ensure that the deletions would be re-tried. This patch makes record_gtid() remember the list of deletions done as part of a transaction. Then in rpl_slave_state::update() when the changes have been committed, we discard the list. However, in case of error and rollback, in cleanup_context() we will instead put the list back into rpl_global_gtid_slave_state so that the deletions will be re-tried later. Probably fixes part of the cause of MDEV-12147 as well. Signed-off-by: Kristian Nielsen --- mysql-test/suite/rpl/r/rpl_parallel_optimistic.result | 6 ++++++ mysql-test/suite/rpl/t/rpl_parallel_optimistic.test | 17 +++++++++++++++++ 2 files changed, 23 insertions(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result b/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result index 3cd4f8231bf..99bd8562ffe 100644 --- a/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result +++ b/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result @@ -571,4 +571,10 @@ SET GLOBAL slave_parallel_mode=@old_parallel_mode; SET GLOBAL slave_parallel_threads=@old_parallel_threads; include/start_slave.inc DROP TABLE t1, t2, t3; +include/save_master_gtid.inc +include/sync_with_master_gtid.inc +Check that no more than the expected last two GTIDs are in mysql.gtid_slave_pos +select count(*) from mysql.gtid_slave_pos order by domain_id, sub_id; +count(*) +2 include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test b/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test index 9f6669279db..3867a3fdf3a 100644 --- a/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test +++ b/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test @@ -549,5 +549,22 @@ SET GLOBAL slave_parallel_threads=@old_parallel_threads; --connection server_1 DROP TABLE t1, t2, t3; +--source include/save_master_gtid.inc + +--connection server_2 +--source include/sync_with_master_gtid.inc +# Check for left-over rows in table mysql.gtid_slave_pos (MDEV-12147). +# +# There was a bug when a transaction got a conflict and was rolled back. It +# might have also handled deletion of some old rows, and these deletions would +# then also be rolled back. And since the deletes were never re-tried, old no +# longer needed rows would accumulate in the table without limit. +# +# The earlier part of this test file have plenty of transactions being rolled +# back. But the last DROP TABLE statement runs on its own and should never +# conflict, thus at this point the mysql.gtid_slave_pos table should be clean. +--echo Check that no more than the expected last two GTIDs are in mysql.gtid_slave_pos +select count(*) from mysql.gtid_slave_pos order by domain_id, sub_id; +--connection server_1 --source include/rpl_end.inc -- cgit v1.2.1 From 1eb364f8b3d623fdeca96a7ecf4a315282c83716 Mon Sep 17 00:00:00 2001 From: Julius Goryavsky Date: Wed, 10 Oct 2018 17:16:34 +0200 Subject: MDEV-17421: mtr does not restart the server whose parameters were changed If a mtr test runs multiple servers and only some of them get restarted on whatever reason with new command-line parameters, then subsequent mtr test may fail, because no cleanup is performed. Replication and Galera test suites are affected. In the mtr script, there is a server_need_restart function that decides whether we need to start a new mysqld process before the new (next) test. If the mysqld parameters were changed in the previous test - not necessarily the parameters of the primary mysqld server, maybe even the secondary server parameters - this function decides to start a new mysqld process. But since it does not remove the old (changed) parameters, the new process starts with the parameters changed by the *previous* test. To correct this error, we must delete the modified process parameters after checking that they have been changed during the previous test. This patch also simplifies and makes more stable the galera_drop_database test, during debugging of which this problem was detected. https://jira.mariadb.org/browse/MDEV-17421 --- mysql-test/suite/rpl/r/mtr_restart_t1.result | 5 +++++ mysql-test/suite/rpl/r/mtr_restart_t2.result | 4 ++++ mysql-test/suite/rpl/t/mtr_restart_t1.test | 31 ++++++++++++++++++++++++++++ mysql-test/suite/rpl/t/mtr_restart_t2.test | 18 ++++++++++++++++ 4 files changed, 58 insertions(+) create mode 100644 mysql-test/suite/rpl/r/mtr_restart_t1.result create mode 100644 mysql-test/suite/rpl/r/mtr_restart_t2.result create mode 100644 mysql-test/suite/rpl/t/mtr_restart_t1.test create mode 100644 mysql-test/suite/rpl/t/mtr_restart_t2.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/mtr_restart_t1.result b/mysql-test/suite/rpl/r/mtr_restart_t1.result new file mode 100644 index 00000000000..56b64a2fc70 --- /dev/null +++ b/mysql-test/suite/rpl/r/mtr_restart_t1.result @@ -0,0 +1,5 @@ +include/master-slave.inc +[connection master] +include/rpl_stop_server.inc [server_number=1] +new auto_increment_offset=111 +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/mtr_restart_t2.result b/mysql-test/suite/rpl/r/mtr_restart_t2.result new file mode 100644 index 00000000000..3c8fe59d607 --- /dev/null +++ b/mysql-test/suite/rpl/r/mtr_restart_t2.result @@ -0,0 +1,4 @@ +include/master-slave.inc +[connection master] +auto_increment_offset=1 +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/mtr_restart_t1.test b/mysql-test/suite/rpl/t/mtr_restart_t1.test new file mode 100644 index 00000000000..3003a49c424 --- /dev/null +++ b/mysql-test/suite/rpl/t/mtr_restart_t1.test @@ -0,0 +1,31 @@ +# This test verifies that mtr will restart the mysqld process, +# whose parameters were changed during the test. The verification +# itself is carried out in the following mtr_restart_t2 test. +# If mtr restart the mysqld process, then the auto_increment_offset +# parameter value will be reset to the default ("1"), but if there +# is no restart, then we will see the changed value ("111") during +# the next test. +# +--source include/have_binlog_format_row.inc +--source include/master-slave.inc + +connection master; + +let $auto_increment_offset = `SELECT @@global.auto_increment_offset`; + +--let $rpl_server_number=1 +source include/rpl_stop_server.inc; +--let $rpl_server_parameters=--auto-increment-offset=111 +--let $keep_include_silent=1 +source include/rpl_start_server.inc; +--let $keep_include_silent=0 + +let $auto_increment_offset_new = `SELECT @@global.auto_increment_offset`; +--echo new auto_increment_offset=$auto_increment_offset_new + +--disable_query_log +--eval SET @@global.auto_increment_offset = $auto_increment_offset; +--enable_query_log + +--connection master +--source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/mtr_restart_t2.test b/mysql-test/suite/rpl/t/mtr_restart_t2.test new file mode 100644 index 00000000000..ab246af6b44 --- /dev/null +++ b/mysql-test/suite/rpl/t/mtr_restart_t2.test @@ -0,0 +1,18 @@ +# This test verifies that mtr will restart the mysqld process, +# whose parameters were changed during the previous test. If mtr +# restart the mysqld process, then the auto_increment_offsert +# parameter value will be reset to the default ("1"), but if there +# is no restart, then we will see the changed value ("111") in +# this test. +# +--source include/have_binlog_format_row.inc +--source include/master-slave.inc + +connection master; + +let $auto_increment_offset = `SELECT @@global.auto_increment_offset`; + +--echo auto_increment_offset=$auto_increment_offset + +--connection master +--source include/rpl_end.inc -- cgit v1.2.1 From 00c40efcd69a7d62fb26b66090e47f0f932b0e15 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Fri, 12 Oct 2018 16:43:45 +0100 Subject: Fix portability issues with rpl test suite. --- mysql-test/suite/rpl/t/rpl_drop_db.test | 8 ++++---- mysql-test/suite/rpl/t/rpl_mdev382.test | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/t/rpl_drop_db.test b/mysql-test/suite/rpl/t/rpl_drop_db.test index f66187b12f5..372afaa63c6 100644 --- a/mysql-test/suite/rpl/t/rpl_drop_db.test +++ b/mysql-test/suite/rpl/t/rpl_drop_db.test @@ -13,8 +13,8 @@ insert into mysqltest1.t1 values (1); select * from mysqltest1.t1 into outfile 'mysqltest1/f1.txt'; create table mysqltest1.t2 (n int); create table mysqltest1.t3 (n int); ---replace_result \\ / 66 39 93 39 17 39 247 39 "File exists" "Directory not empty" ---error 1010 +--replace_result \\ / 66 39 93 39 17 39 247 39 41 39 "File exists" "Directory not empty" +--error ER_DB_DROP_RMDIR drop database mysqltest1; use mysqltest1; show tables; @@ -30,8 +30,8 @@ while ($1) } --enable_query_log ---replace_result \\ / 66 39 93 39 17 39 247 39 "File exists" "Directory not empty" ---error 1010 +--replace_result \\ / 66 39 93 39 17 39 247 39 41 39 "File exists" "Directory not empty" +--error ER_DB_DROP_RMDIR drop database mysqltest1; use mysqltest1; show tables; diff --git a/mysql-test/suite/rpl/t/rpl_mdev382.test b/mysql-test/suite/rpl/t/rpl_mdev382.test index 3ec877cdb1a..ba1b50648f3 100644 --- a/mysql-test/suite/rpl/t/rpl_mdev382.test +++ b/mysql-test/suite/rpl/t/rpl_mdev382.test @@ -257,7 +257,7 @@ let $binlog_start= query_get_value(SHOW MASTER STATUS, Position, 1); INSERT INTO t1 VALUES(1); --source include/show_binlog_events2.inc let $pos2= query_get_value(SHOW MASTER STATUS, Position, 1); ---exec $MYSQL_BINLOG --short-form --start-position=$binlog_start --stop-position=$pos2 --rewrite-db='test->ts`et' $MYSQLD_DATADIR/master-bin.000002 +--exec $MYSQL_BINLOG --short-form --start-position=$binlog_start --stop-position=$pos2 "--rewrite-db=test->ts`et" $MYSQLD_DATADIR/master-bin.000002 DROP TABLE t1; --source include/rpl_end.inc -- cgit v1.2.1 From 2fd770641ecb476038576cdf3e8829599633292e Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Fri, 12 Oct 2018 20:07:08 +0200 Subject: Revert the last change to replication test disable rpl_mdev382 on Windows, due to unix shell escaping used there. --- mysql-test/suite/rpl/t/rpl_mdev382.test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/t/rpl_mdev382.test b/mysql-test/suite/rpl/t/rpl_mdev382.test index ba1b50648f3..1d951cc7456 100644 --- a/mysql-test/suite/rpl/t/rpl_mdev382.test +++ b/mysql-test/suite/rpl/t/rpl_mdev382.test @@ -1,6 +1,7 @@ --source include/have_innodb.inc --source include/have_binlog_format_statement.inc --source include/master-slave.inc +--source include/not_windows.inc #unix shell escaping used for mysqlbinlog # MDEV-382: multiple SQL injections in replication code. @@ -257,7 +258,7 @@ let $binlog_start= query_get_value(SHOW MASTER STATUS, Position, 1); INSERT INTO t1 VALUES(1); --source include/show_binlog_events2.inc let $pos2= query_get_value(SHOW MASTER STATUS, Position, 1); ---exec $MYSQL_BINLOG --short-form --start-position=$binlog_start --stop-position=$pos2 "--rewrite-db=test->ts`et" $MYSQLD_DATADIR/master-bin.000002 +--exec $MYSQL_BINLOG --short-form --start-position=$binlog_start --stop-position=$pos2 --rewrite-db='test->ts`et' $MYSQLD_DATADIR/master-bin.000002 DROP TABLE t1; --source include/rpl_end.inc -- cgit v1.2.1 From 2308b9afec559cd8c5717007a7ad6821c374370d Mon Sep 17 00:00:00 2001 From: Andrei Elkin Date: Wed, 3 Oct 2018 21:45:05 +0300 Subject: MDEV-17098 DATE -> DATETIME replication conversion not working, even in ALL_NON_LOSSY mode Opened up MYSQL_TYPE _DATETIME{,2} <-> _NEWDATE conversions for replication. --- mysql-test/suite/rpl/r/rpl_typeconv.result | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_typeconv.result b/mysql-test/suite/rpl/r/rpl_typeconv.result index e9ffdd2b7b1..e65dede28e0 100644 --- a/mysql-test/suite/rpl/r/rpl_typeconv.result +++ b/mysql-test/suite/rpl/r/rpl_typeconv.result @@ -43,6 +43,10 @@ SET GLOBAL SLAVE_TYPE_CONVERSIONS=''; # MDEV-15833 Row format replication between LONGBLOB and MEDIUMBLOB does not work for long values # # End of MDEV-15833 +# +# MDEV-17098 DATE <-> DATETIME +# +# End of MDEV-17098 include/rpl_reset.inc connection slave; SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_NON_LOSSY'; @@ -51,6 +55,10 @@ SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_NON_LOSSY'; # MDEV-15833 Row format replication between LONGBLOB and MEDIUMBLOB does not work for long values # # End of MDEV-15833 +# +# MDEV-17098 DATE <-> DATETIME +# +# End of MDEV-17098 include/rpl_reset.inc connection slave; SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_LOSSY'; @@ -59,6 +67,10 @@ SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_LOSSY'; # MDEV-15833 Row format replication between LONGBLOB and MEDIUMBLOB does not work for long values # # End of MDEV-15833 +# +# MDEV-17098 DATE <-> DATETIME +# +# End of MDEV-17098 include/rpl_reset.inc connection slave; SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_LOSSY,ALL_NON_LOSSY'; @@ -67,6 +79,10 @@ SET GLOBAL SLAVE_TYPE_CONVERSIONS='ALL_LOSSY,ALL_NON_LOSSY'; # MDEV-15833 Row format replication between LONGBLOB and MEDIUMBLOB does not work for long values # # End of MDEV-15833 +# +# MDEV-17098 DATE <-> DATETIME +# +# End of MDEV-17098 include/rpl_reset.inc connection slave; **** Result of conversions **** @@ -208,6 +224,13 @@ LONGBLOB TINYBLOB LONGBLOB BLOB LONGBLOB MEDIUMBLOB LONGBLOB VARBINARY(65500 +DATE DATETIME(6) +DATE DATETIME(6) +DATE DATETIME(6) +DATE DATETIME(0) +DATETIME(6) DATE +DATETIME(6) DATE +DATETIME(0) DATE TINYBLOB TINYBLOB ALL_NON_LOSSY TINYBLOB BLOB ALL_NON_LOSSY TINYBLOB MEDIUMBLOB ALL_NON_LOSSY @@ -345,6 +368,13 @@ LONGBLOB TINYBLOB ALL_NON_LOSSY LONGBLOB BLOB ALL_NON_LOSSY LONGBLOB MEDIUMBLOB ALL_NON_LOSSY LONGBLOB VARBINARY(65500 ALL_NON_LOSSY +DATE DATETIME(6) ALL_NON_LOSSY +DATE DATETIME(6) ALL_NON_LOSSY +DATE DATETIME(6) ALL_NON_LOSSY +DATE DATETIME(0) ALL_NON_LOSSY +DATETIME(6) DATE ALL_NON_LOSSY +DATETIME(6) DATE ALL_NON_LOSSY +DATETIME(0) DATE ALL_NON_LOSSY TINYBLOB TINYBLOB ALL_LOSSY TINYBLOB BLOB ALL_LOSSY TINYBLOB MEDIUMBLOB ALL_LOSSY @@ -482,6 +512,13 @@ LONGBLOB TINYBLOB ALL_LOSSY LONGBLOB BLOB ALL_LOSSY LONGBLOB MEDIUMBLOB ALL_LOSSY LONGBLOB VARBINARY(65500 ALL_LOSSY +DATE DATETIME(6) ALL_LOSSY +DATE DATETIME(6) ALL_LOSSY +DATE DATETIME(6) ALL_LOSSY +DATE DATETIME(0) ALL_LOSSY +DATETIME(6) DATE ALL_LOSSY +DATETIME(6) DATE ALL_LOSSY +DATETIME(0) DATE ALL_LOSSY TINYBLOB TINYBLOB ALL_LOSSY,ALL_NON_LOSSY TINYBLOB BLOB ALL_LOSSY,ALL_NON_LOSSY TINYBLOB MEDIUMBLOB ALL_LOSSY,ALL_NON_LOSSY @@ -619,6 +656,13 @@ LONGBLOB TINYBLOB ALL_LOSSY,ALL_NON_LOSSY LONGBLOB BLOB ALL_LOSSY,ALL_NON_LOSSY LONGBLOB MEDIUMBLOB ALL_LOSSY,ALL_NON_LOSSY LONGBLOB VARBINARY(65500 ALL_LOSSY,ALL_NON_LOSSY +DATE DATETIME(6) ALL_LOSSY,ALL_NON_LOSSY +DATE DATETIME(6) ALL_LOSSY,ALL_NON_LOSSY +DATE DATETIME(6) ALL_LOSSY,ALL_NON_LOSSY +DATE DATETIME(0) ALL_LOSSY,ALL_NON_LOSSY +DATETIME(6) DATE ALL_LOSSY,ALL_NON_LOSSY +DATETIME(6) DATE ALL_LOSSY,ALL_NON_LOSSY +DATETIME(0) DATE ALL_LOSSY,ALL_NON_LOSSY DROP TABLE type_conversions; call mtr.add_suppression("Slave SQL.*Column 1 of table .test.t1. cannot be converted from type.* error.* 1677"); connection master; -- cgit v1.2.1 From e31e697f17f79ffa6913499e7e2d29866f24b475 Mon Sep 17 00:00:00 2001 From: Sachin Date: Sun, 14 Oct 2018 23:16:53 +0530 Subject: MDEV-15919 lower_case_table_names does not behave as expected(nor... consistently) on Replication Slave lower_case_table_names 0 -> 1 replication works, it's safe as long as mixed case names mapping to the lower case ones is one-to-one --- mysql-test/suite/rpl/r/rpl_15919.result | 16 ++++++ .../rpl/r/rpl_lcase_tblnames_rewrite_db.result | 33 ++++++++++++ .../suite/rpl/r/rpl_row_lcase_tblnames.result | 47 +++++++++++++++++ .../suite/rpl/r/rpl_stm_lcase_tblnames.result | 44 ++++++++++++++++ mysql-test/suite/rpl/t/rpl_15919-master.opt | 1 + mysql-test/suite/rpl/t/rpl_15919-slave.opt | 1 + mysql-test/suite/rpl/t/rpl_15919.test | 16 ++++++ .../rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt | 1 + .../suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test | 60 ++++++++++++++++++++++ .../suite/rpl/t/rpl_row_lcase_tblnames-slave.opt | 1 + mysql-test/suite/rpl/t/rpl_row_lcase_tblnames.test | 12 +++++ .../suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt | 1 + mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames.test | 12 +++++ 13 files changed, 245 insertions(+) create mode 100644 mysql-test/suite/rpl/r/rpl_15919.result create mode 100644 mysql-test/suite/rpl/r/rpl_lcase_tblnames_rewrite_db.result create mode 100644 mysql-test/suite/rpl/r/rpl_row_lcase_tblnames.result create mode 100644 mysql-test/suite/rpl/r/rpl_stm_lcase_tblnames.result create mode 100644 mysql-test/suite/rpl/t/rpl_15919-master.opt create mode 100644 mysql-test/suite/rpl/t/rpl_15919-slave.opt create mode 100644 mysql-test/suite/rpl/t/rpl_15919.test create mode 100644 mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt create mode 100644 mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test create mode 100644 mysql-test/suite/rpl/t/rpl_row_lcase_tblnames-slave.opt create mode 100644 mysql-test/suite/rpl/t/rpl_row_lcase_tblnames.test create mode 100644 mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt create mode 100644 mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_15919.result b/mysql-test/suite/rpl/r/rpl_15919.result new file mode 100644 index 00000000000..0c176624cf7 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_15919.result @@ -0,0 +1,16 @@ +include/master-slave.inc +[connection master] +create table RPL(a int); +insert into RPL values(1); +select * from rpl; +a +1 +insert into RPL values(3); +insert into rpl values(4); +select * from rpl; +a +1 +3 +4 +drop table RPL; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_lcase_tblnames_rewrite_db.result b/mysql-test/suite/rpl/r/rpl_lcase_tblnames_rewrite_db.result new file mode 100644 index 00000000000..3feb01d92fc --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_lcase_tblnames_rewrite_db.result @@ -0,0 +1,33 @@ +include/master-slave.inc +[connection master] +SET SQL_LOG_BIN=0; +CREATE DATABASE B37656; +SET SQL_LOG_BIN=1; +CREATE DATABASE BUG37656; +### action: show that database on slave is created in lowercase +SHOW DATABASES LIKE '%37656'; +Database (%37656) +bug37656 +USE B37656; +CREATE TABLE T1 (a int); +INSERT INTO T1 VALUES (1); +### assertion: master contains capitalized case table +SHOW TABLES; +Tables_in_B37656 +T1 +use bug37656; +### assertion: slave contains lowered case table +SHOW TABLES; +Tables_in_bug37656 +t1 +### assertion: master and slave tables do not differ +include/diff_tables.inc [master:B37656.T1, slave:bug37656.t1] +SET SQL_LOG_BIN=0; +DROP DATABASE B37656; +SET SQL_LOG_BIN=1; +SHOW DATABASES LIKE '%37656'; +Database (%37656) +DROP DATABASE BUG37656; +SHOW DATABASES LIKE '%37656'; +Database (%37656) +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_row_lcase_tblnames.result b/mysql-test/suite/rpl/r/rpl_row_lcase_tblnames.result new file mode 100644 index 00000000000..d8d459f4dcc --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_row_lcase_tblnames.result @@ -0,0 +1,47 @@ +include/master-slave.inc +[connection master] +******** [ MASTER ] ******** +CREATE DATABASE BUG_37656; +use BUG_37656; +show databases like 'BUG_37656'; +Database (BUG_37656) +BUG_37656 +******** [ SLAVE ] ******** +show databases like 'bug_37656'; +Database (bug_37656) +bug_37656 +******** [ MASTER ] ******** +CREATE TABLE T1 (a int); +CREATE TABLE T2 (b int) ENGINE=InnoDB; +CREATE TABLE T3 (txt TEXT); +show tables; +Tables_in_BUG_37656 +T1 +T2 +T3 +******** [ SLAVE ] ******** +use bug_37656; +show tables; +Tables_in_bug_37656 +t2 +t3 +CREATE TABLE t1 (a INT); +******** [ MASTER ] ******** +use BUG_37656; +INSERT INTO T1 VALUES (1); +INSERT INTO T2 VALUES (1); +use test; +INSERT INTO BUG_37656.T1 VALUES (2); +INSERT INTO BUG_37656.T2 VALUES (2); +LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE BUG_37656.T3; +******** [ SLAVE ] ******** +include/diff_tables.inc [master:BUG_37656.T2, slave:bug_37656.t2] +include/diff_tables.inc [master:BUG_37656.T3, slave:bug_37656.t3] +******** [ MASTER ] ******** +DROP DATABASE BUG_37656; +CREATE DATABASE B50653; +USE B50653; +CREATE PROCEDURE b50653_proc() BEGIN SELECT 1; END; +DROP PROCEDURE b50653_proc; +DROP DATABASE B50653; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_stm_lcase_tblnames.result b/mysql-test/suite/rpl/r/rpl_stm_lcase_tblnames.result new file mode 100644 index 00000000000..0d60f52a983 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_stm_lcase_tblnames.result @@ -0,0 +1,44 @@ +include/master-slave.inc +[connection master] +******** [ MASTER ] ******** +CREATE DATABASE BUG_37656; +use BUG_37656; +show databases like 'BUG_37656'; +Database (BUG_37656) +BUG_37656 +******** [ SLAVE ] ******** +show databases like 'bug_37656'; +Database (bug_37656) +bug_37656 +******** [ MASTER ] ******** +CREATE TABLE T1 (a int); +CREATE TABLE T2 (b int) ENGINE=InnoDB; +CREATE TABLE T3 (txt TEXT); +show tables; +Tables_in_BUG_37656 +T1 +T2 +T3 +******** [ SLAVE ] ******** +use bug_37656; +show tables; +Tables_in_bug_37656 +t2 +t3 +CREATE TABLE t1 (a INT); +******** [ MASTER ] ******** +use BUG_37656; +INSERT INTO T1 VALUES (1); +INSERT INTO T2 VALUES (1); +LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE BUG_37656.T3; +******** [ SLAVE ] ******** +include/diff_tables.inc [master:BUG_37656.T2, slave:bug_37656.t2] +include/diff_tables.inc [master:BUG_37656.T3, slave:bug_37656.t3] +******** [ MASTER ] ******** +DROP DATABASE BUG_37656; +CREATE DATABASE B50653; +USE B50653; +CREATE PROCEDURE b50653_proc() BEGIN SELECT 1; END; +DROP PROCEDURE b50653_proc; +DROP DATABASE B50653; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_15919-master.opt b/mysql-test/suite/rpl/t/rpl_15919-master.opt new file mode 100644 index 00000000000..9b27aef9bf8 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_15919-master.opt @@ -0,0 +1 @@ +--lower_case_table_names=0 diff --git a/mysql-test/suite/rpl/t/rpl_15919-slave.opt b/mysql-test/suite/rpl/t/rpl_15919-slave.opt new file mode 100644 index 00000000000..62ab6dad1e0 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_15919-slave.opt @@ -0,0 +1 @@ +--lower_case_table_names=1 diff --git a/mysql-test/suite/rpl/t/rpl_15919.test b/mysql-test/suite/rpl/t/rpl_15919.test new file mode 100644 index 00000000000..0462f7fd067 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_15919.test @@ -0,0 +1,16 @@ +--source include/master-slave.inc +--source include/have_innodb.inc +--connection master +create table RPL(a int); +insert into RPL values(1); + +--sync_slave_with_master +select * from rpl; +insert into RPL values(3); +insert into rpl values(4); +select * from rpl; + +--connection master +drop table RPL; + +--source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt b/mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt new file mode 100644 index 00000000000..0031a57a693 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db-slave.opt @@ -0,0 +1 @@ +--lower-case-table-names=1 "--replicate-rewrite-db=b37656->bug37656" diff --git a/mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test b/mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test new file mode 100644 index 00000000000..9c804d8206a --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_lcase_tblnames_rewrite_db.test @@ -0,0 +1,60 @@ +# BUG#37656 +# +# DESCRIPTION +# +# +# This test case is tests whether replication works properly when +# slave is configured with --lower-case-table-names=1 and replication +# rewrite rules are in effect. +# +# It checks four issues: +# +# (i) master contains capitalized table name +# +# (ii) slave contains lowered case table name +# +# (iii) master and slave tables do not differ +# +-- source include/master-slave.inc +-- source include/not_windows.inc + +SET SQL_LOG_BIN=0; +CREATE DATABASE B37656; +SET SQL_LOG_BIN=1; + +-- connection slave +CREATE DATABASE BUG37656; + +-- echo ### action: show that database on slave is created in lowercase +SHOW DATABASES LIKE '%37656'; + +-- connection master +USE B37656; +CREATE TABLE T1 (a int); +INSERT INTO T1 VALUES (1); + +-- echo ### assertion: master contains capitalized case table +SHOW TABLES; + +-- sync_slave_with_master + +use bug37656; + +-- echo ### assertion: slave contains lowered case table +SHOW TABLES; + +-- echo ### assertion: master and slave tables do not differ +let $diff_tables= master:B37656.T1, slave:bug37656.t1; + +-- source include/diff_tables.inc + +-- connection master +SET SQL_LOG_BIN=0; +DROP DATABASE B37656; +SET SQL_LOG_BIN=1; +SHOW DATABASES LIKE '%37656'; + +-- connection slave +DROP DATABASE BUG37656; +SHOW DATABASES LIKE '%37656'; +--source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_row_lcase_tblnames-slave.opt b/mysql-test/suite/rpl/t/rpl_row_lcase_tblnames-slave.opt new file mode 100644 index 00000000000..7624b013dcd --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_row_lcase_tblnames-slave.opt @@ -0,0 +1 @@ +--replicate-do-db=bug_37656 --replicate-ignore-table=buG_37656.T1 --replicate-do-table=bUg_37656.T2 --replicate-do-table=bUg_37656.T3 --lower-case-table-names=1 diff --git a/mysql-test/suite/rpl/t/rpl_row_lcase_tblnames.test b/mysql-test/suite/rpl/t/rpl_row_lcase_tblnames.test new file mode 100644 index 00000000000..78a66a7df32 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_row_lcase_tblnames.test @@ -0,0 +1,12 @@ +# BUG#37656 +# +# For details look into extra/rpl_tests/rpl_lower_case_table_names.test +# + +-- source include/master-slave.inc +-- source include/have_innodb.inc +-- source include/not_windows.inc +-- source include/have_binlog_format_row.inc + +-- let $engine=InnoDB +-- source extra/rpl_tests/rpl_lower_case_table_names.test diff --git a/mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt b/mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt new file mode 100644 index 00000000000..8be29bbe976 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt @@ -0,0 +1 @@ +--replicate-do-db=bug_37656 --replicate-ignore-table=bug_37656.t1 --replicate-do-table=bug_37656.t2 --replicate-do-table=bug_37656.t3 --lower-case-table-names=1 diff --git a/mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames.test b/mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames.test new file mode 100644 index 00000000000..00df8e9d385 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_stm_lcase_tblnames.test @@ -0,0 +1,12 @@ +# BUG#37656 +# +# For details look into extra/rpl_tests/rpl_lower_case_table_names.test +# + +-- source include/master-slave.inc +-- source include/have_innodb.inc +-- source include/not_windows.inc +-- source include/have_binlog_format_mixed_or_statement.inc + +-- let $engine=InnoDB +-- source extra/rpl_tests/rpl_lower_case_table_names.test -- cgit v1.2.1 From f4b8b6b9a3ad4ce5e5218e2ec2dfe6dd34112e45 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Mon, 29 Oct 2018 21:44:38 +0100 Subject: MDEV-15919 lower_case_table_names does not behave as expected followup for e31e697f17f Fix the test not to fail on Mac OS X (lower_case_table_names=0 prevents mysqld from starting on case insensitive filesystem) --- mysql-test/suite/rpl/t/rpl_15919-master.opt | 1 - mysql-test/suite/rpl/t/rpl_15919.test | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 mysql-test/suite/rpl/t/rpl_15919-master.opt (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/t/rpl_15919-master.opt b/mysql-test/suite/rpl/t/rpl_15919-master.opt deleted file mode 100644 index 9b27aef9bf8..00000000000 --- a/mysql-test/suite/rpl/t/rpl_15919-master.opt +++ /dev/null @@ -1 +0,0 @@ ---lower_case_table_names=0 diff --git a/mysql-test/suite/rpl/t/rpl_15919.test b/mysql-test/suite/rpl/t/rpl_15919.test index 0462f7fd067..a5b25929ad0 100644 --- a/mysql-test/suite/rpl/t/rpl_15919.test +++ b/mysql-test/suite/rpl/t/rpl_15919.test @@ -1,5 +1,7 @@ ---source include/master-slave.inc +--source include/have_case_sensitive_file_system.inc --source include/have_innodb.inc +--source include/master-slave.inc + --connection master create table RPL(a int); insert into RPL values(1); -- cgit v1.2.1 From dfbba3d20220e5c9219b4b879e2d99999d53c05d Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 14 Oct 2018 18:05:40 +0200 Subject: cleanup: get rid of a SQL warning in a test --- mysql-test/suite/rpl/r/rpl_auto_increment.result | 16 - .../rpl/r/rpl_auto_increment_update_failure.result | 112 -- mysql-test/suite/rpl/r/rpl_binlog_index.result | 4 - mysql-test/suite/rpl/r/rpl_checksum_cache.result | 24 - .../suite/rpl/r/rpl_conditional_comments.result | 12 - mysql-test/suite/rpl/r/rpl_corruption.result | 4 - mysql-test/suite/rpl/r/rpl_current_user.result | 78 - mysql-test/suite/rpl/r/rpl_insert_ignore.result | 8 - mysql-test/suite/rpl/r/rpl_loaddata.result | 4 - mysql-test/suite/rpl/r/rpl_loadfile.result | 4 - .../suite/rpl/r/rpl_lost_events_on_rotate.result | 4 - .../rpl/r/rpl_mixed_binlog_max_cache_size.result | 28 - .../rpl/r/rpl_mixed_implicit_commit_binlog.result | 4 - .../rpl/r/rpl_nondeterministic_functions.result | 4 - mysql-test/suite/rpl/r/rpl_not_null_innodb.result | 16 - mysql-test/suite/rpl/r/rpl_not_null_myisam.result | 16 - mysql-test/suite/rpl/r/rpl_reset_slave_fail.result | 4 - .../suite/rpl/r/rpl_row_basic_2myisam.result | 32 - .../suite/rpl/r/rpl_row_basic_3innodb.result | 32 - mysql-test/suite/rpl/r/rpl_row_find_row.result | 4 - mysql-test/suite/rpl/r/rpl_row_img_blobs.result | 2016 -------------------- mysql-test/suite/rpl/r/rpl_row_img_eng_min.result | 1152 ----------- .../suite/rpl/r/rpl_row_img_eng_noblob.result | 1152 ----------- .../rpl/r/rpl_row_implicit_commit_binlog.result | 4 - .../suite/rpl/r/rpl_row_loaddata_concurrent.result | 4 - mysql-test/suite/rpl/r/rpl_row_merge_engine.result | 16 - .../suite/rpl/r/rpl_row_rec_comp_innodb.result | 12 - .../suite/rpl/r/rpl_row_rec_comp_myisam.result | 16 - mysql-test/suite/rpl/r/rpl_row_tbl_metadata.result | 44 - mysql-test/suite/rpl/r/rpl_row_utf16.result | 4 - mysql-test/suite/rpl/r/rpl_set_null_innodb.result | 16 - mysql-test/suite/rpl/r/rpl_set_null_myisam.result | 16 - mysql-test/suite/rpl/r/rpl_slave_load_in.result | 8 - mysql-test/suite/rpl/r/rpl_special_charset.result | 4 - .../rpl/r/rpl_stm_binlog_max_cache_size.result | 28 - .../rpl/r/rpl_stm_implicit_commit_binlog.result | 4 - .../suite/rpl/r/rpl_stm_loaddata_concurrent.result | 4 - .../suite/rpl/r/rpl_stm_relay_ign_space.result | 4 - .../suite/rpl/r/rpl_stm_user_variables.result | 4 - mysql-test/suite/rpl/r/rpl_stop_slave.result | 8 - mysql-test/suite/rpl/r/rpl_sync.result | 8 - .../suite/rpl/r/rpl_temp_table_mix_row.result | 4 - mysql-test/suite/rpl/r/rpl_test_framework.result | 126 -- mysql-test/suite/rpl/r/rpl_trigger.result | 8 - mysql-test/suite/rpl/r/rpl_truncate_2myisam.result | 16 - mysql-test/suite/rpl/r/rpl_truncate_3innodb.result | 16 - mysql-test/suite/rpl/r/rpl_typeconv_innodb.result | 4 - .../suite/rpl/r/rpl_unsafe_statements.result | 24 - mysql-test/suite/rpl/r/rpl_variables.result | 20 - mysql-test/suite/rpl/r/rpl_variables_stm.result | 20 - 50 files changed, 5172 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_auto_increment.result b/mysql-test/suite/rpl/r/rpl_auto_increment.result index 077645ac500..48617a0f713 100644 --- a/mysql-test/suite/rpl/r/rpl_auto_increment.result +++ b/mysql-test/suite/rpl/r/rpl_auto_increment.result @@ -318,15 +318,7 @@ INSERT INTO t2 VALUES(4); FLUSH LOGS; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -334,15 +326,7 @@ connection slave; connection master; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; diff --git a/mysql-test/suite/rpl/r/rpl_auto_increment_update_failure.result b/mysql-test/suite/rpl/r/rpl_auto_increment_update_failure.result index de804312a39..ac610241bd1 100644 --- a/mysql-test/suite/rpl/r/rpl_auto_increment_update_failure.result +++ b/mysql-test/suite/rpl/r/rpl_auto_increment_update_failure.result @@ -116,20 +116,8 @@ connection slave; #Test if the results are consistent on master and slave #for 'INVOKES A TRIGGER with after insert action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -255,20 +243,8 @@ connection slave; #Test if the results are consistent on master and slave #for 'INVOKES A TRIGGER with before insert action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -394,20 +370,8 @@ connection slave; #Test if the results are consistent on master and slave #for 'INVOKES A TRIGGER with after update action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -533,20 +497,8 @@ connection slave; #Test if the results are consistent on master and slave #for 'INVOKES A TRIGGER with before update action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -672,20 +624,8 @@ connection slave; #Test if the results are consistent on master and slave #for 'INVOKES A TRIGGER with after delete action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -811,20 +751,8 @@ connection slave; #Test if the results are consistent on master and slave #for 'INVOKES A TRIGGER with before delete action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -904,15 +832,7 @@ connection slave; #Test if the results are consistent on master and slave #for 'CALLS A FUNCTION which INVOKES A TRIGGER with after insert action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t3, slave:t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; drop table t2; @@ -989,15 +909,7 @@ connection slave; #Test if the results are consistent on master and slave #for 'CALLS A FUNCTION which INVOKES A TRIGGER with before insert action' include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t3, slave:t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; drop table t2; @@ -1028,10 +940,6 @@ connection slave; #Test if the results are consistent on master and slave #for 'INSERT DATA INTO VIEW WHICH INVOKES TRIGGERS' include/diff_tables.inc [master:t3, slave:t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -1062,10 +970,6 @@ connection slave; #Test if the results are consistent on master and slave #for 'INSERT DATA INTO VIEW WHICH INVOKES TRIGGERS' include/diff_tables.inc [master:t3, slave:t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP TABLE t2; @@ -1189,15 +1093,7 @@ connection slave; #Test if the results are consistent on master and slave #for 'UPDATE MORE THAN ONE TABLES ON TOP-STATEMENT' include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; drop table t2; @@ -1258,15 +1154,7 @@ connection slave; #Test if the results are consistent on master and slave #for 'INSERT DATA INTO VIEW WHICH INVOLVED MORE THAN ONE TABLES' include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; drop table t2; diff --git a/mysql-test/suite/rpl/r/rpl_binlog_index.result b/mysql-test/suite/rpl/r/rpl_binlog_index.result index b0e59c55b4a..4257dbde57a 100644 --- a/mysql-test/suite/rpl/r/rpl_binlog_index.result +++ b/mysql-test/suite/rpl/r/rpl_binlog_index.result @@ -45,10 +45,6 @@ include/start_slave.inc connection master; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_checksum_cache.result b/mysql-test/suite/rpl/r/rpl_checksum_cache.result index 85700e4e239..e8f221cc181 100644 --- a/mysql-test/suite/rpl/r/rpl_checksum_cache.result +++ b/mysql-test/suite/rpl/r/rpl_checksum_cache.result @@ -43,10 +43,6 @@ Variable_name Value Binlog_cache_disk_use 1 connection slave; include/diff_tables.inc [master:test.t1, slave:test.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; begin; delete from t1; @@ -64,10 +60,6 @@ Variable_name Value Binlog_cache_disk_use 1 connection slave; include/diff_tables.inc [master:test.t2, slave:test.t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; begin; delete from t2; @@ -85,10 +77,6 @@ Variable_name Value Binlog_cache_disk_use 1 connection slave; include/diff_tables.inc [master:test.t3, slave:test.t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; begin; delete from t3; @@ -131,20 +119,8 @@ Variable_name Value Binlog_cache_disk_use 1 connection slave; include/diff_tables.inc [master:test.t1, slave:test.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:test.t2, slave:test.t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:test.t3, slave:test.t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; begin; delete from t1; diff --git a/mysql-test/suite/rpl/r/rpl_conditional_comments.result b/mysql-test/suite/rpl/r/rpl_conditional_comments.result index fe81ea2df0e..044f31427be 100644 --- a/mysql-test/suite/rpl/r/rpl_conditional_comments.result +++ b/mysql-test/suite/rpl/r/rpl_conditional_comments.result @@ -18,10 +18,6 @@ master-bin.000001 # Query # # use `test`; /* 999999 --- */INSERT /*!INTO*/ /*!10 master-bin.000001 # Query # # COMMIT connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Case 2: # ----------------------------------------------------------------- @@ -35,10 +31,6 @@ CREATE TABLE t1(c1 INT); EXECUTE stmt; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; SET @value=62; @@ -71,10 +63,6 @@ master-bin.000001 # Query # # use `test`; INSERT INTO /* 999999 blabla */ t1 VAL master-bin.000001 # Query # # COMMIT connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Case 3: # ----------------------------------------------------------------- diff --git a/mysql-test/suite/rpl/r/rpl_corruption.result b/mysql-test/suite/rpl/r/rpl_corruption.result index 161559af81f..14a67b3a3a5 100644 --- a/mysql-test/suite/rpl/r/rpl_corruption.result +++ b/mysql-test/suite/rpl/r/rpl_corruption.result @@ -53,10 +53,6 @@ include/start_slave.inc connection master; connection slave; include/diff_tables.inc [master:test.t1, slave:test.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # 8. Clean up connection master; SET GLOBAL debug_dbug= ""; diff --git a/mysql-test/suite/rpl/r/rpl_current_user.result b/mysql-test/suite/rpl/r/rpl_current_user.result index 35e23863616..ba5269bef22 100644 --- a/mysql-test/suite/rpl/r/rpl_current_user.result +++ b/mysql-test/suite/rpl/r/rpl_current_user.result @@ -27,78 +27,36 @@ connection conn1; REVOKE ALL PRIVILEGES, GRANT OPTION FROM CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'GRANT ... ON TABLE ...' statement GRANT CREATE, INSERT, SELECT ON TABLE test.t1 TO CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'GRANT ... ON PROCEDURE...' statement GRANT ALTER ROUTINE, EXECUTE ON PROCEDURE p1 TO CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'GRANT ... ON *.* ...' statement GRANT ALL PRIVILEGES ON *.* TO CURRENT_USER() WITH GRANT OPTION; include/rpl_sync.inc include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'REVOKE ... ON TABLE ...' statement REVOKE CREATE, INSERT, SELECT ON TABLE t1 FROM CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'REVOKE ... ON PROCEDURE...' statement REVOKE ALTER ROUTINE, EXECUTE ON PROCEDURE p1 FROM CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'REVOKE ... ON *.* ...' statement REVOKE ALL PRIVILEGES ON *.* FROM CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'GRANT ...' statement in the procedure CREATE PROCEDURE my_grant() @@ -106,12 +64,6 @@ GRANT CREATE, INSERT, SELECT ON TABLE test.t1 TO CURRENT_USER(); call my_grant; include/rpl_sync.inc include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'REVOKE ... ON TABLE ...' statement in the procedure CREATE PROCEDURE my_revoke() @@ -119,23 +71,11 @@ REVOKE CREATE, INSERT, SELECT ON TABLE t1 FROM CURRENT_USER(); call my_revoke; include/rpl_sync.inc include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'RENAME USER ...' statement RENAME USER CURRENT_USER TO 'bug48321_2'@'localhost'; include/rpl_sync.inc include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead disconnect conn1; # Verify 'DROP USER ...' statement @@ -146,12 +86,6 @@ connection conn1; DROP USER CURRENT_USER(); include/rpl_sync.inc include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify 'ALTER EVENT...' statement connection master; @@ -160,24 +94,12 @@ CREATE EVENT e1 ON SCHEDULE EVERY 1 DAY DO SELECT * FROM t1; ALTER DEFINER=CURRENT_USER() EVENT e1 ENABLE; include/rpl_sync.inc include/diff_tables.inc [server_1:v_event, server_2:v_event, server_3:v_event] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Session user will be set as definer, if the statement does not assign # a definer ALTER EVENT e1 ENABLE; include/rpl_sync.inc include/diff_tables.inc [server_1:v_event, server_2:v_event, server_3:v_event] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead # Verify that this patch does not affect the calling of CURRENT_USER() # in the other statements diff --git a/mysql-test/suite/rpl/r/rpl_insert_ignore.result b/mysql-test/suite/rpl/r/rpl_insert_ignore.result index 3181749f604..9c621169a66 100644 --- a/mysql-test/suite/rpl/r/rpl_insert_ignore.result +++ b/mysql-test/suite/rpl/r/rpl_insert_ignore.result @@ -25,10 +25,6 @@ INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; include/assert.inc [Count of elements in t1 should be 6.] connection slave; include/diff_tables.inc [master:test.t1 , slave:test.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; include/assert.inc [Count of elements in t1 should be 6.] @@ -73,10 +69,6 @@ INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; include/assert.inc [Count of elements in t1 should be 6.] connection slave; include/diff_tables.inc [master:test.t1 , slave:test.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; include/assert.inc [Count of elements in t1 should be 6.] diff --git a/mysql-test/suite/rpl/r/rpl_loaddata.result b/mysql-test/suite/rpl/r/rpl_loaddata.result index 551361dcec5..e759f34bb9d 100644 --- a/mysql-test/suite/rpl/r/rpl_loaddata.result +++ b/mysql-test/suite/rpl/r/rpl_loaddata.result @@ -119,10 +119,6 @@ connection master; connection slave; use b48297_db1; include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP DATABASE b48297_db1; DROP DATABASE b42897_db2; diff --git a/mysql-test/suite/rpl/r/rpl_loadfile.result b/mysql-test/suite/rpl/r/rpl_loadfile.result index ebb06b179e3..2afe510ddeb 100644 --- a/mysql-test/suite/rpl/r/rpl_loadfile.result +++ b/mysql-test/suite/rpl/r/rpl_loadfile.result @@ -244,10 +244,6 @@ include/start_slave.inc connection master; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; DROP PROCEDURE p; diff --git a/mysql-test/suite/rpl/r/rpl_lost_events_on_rotate.result b/mysql-test/suite/rpl/r/rpl_lost_events_on_rotate.result index ab58c613d1c..e03606874b8 100644 --- a/mysql-test/suite/rpl/r/rpl_lost_events_on_rotate.result +++ b/mysql-test/suite/rpl/r/rpl_lost_events_on_rotate.result @@ -10,10 +10,6 @@ FLUSH LOGS; SET DEBUG_SYNC= 'now SIGNAL signal.rotate_finished'; connection slave; include/diff_tables.inc [master:t,slave:t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; SET @@GLOBAL.DEBUG_DBUG= @debug_saved; SET DEBUG_SYNC= 'RESET'; diff --git a/mysql-test/suite/rpl/r/rpl_mixed_binlog_max_cache_size.result b/mysql-test/suite/rpl/r/rpl_mixed_binlog_max_cache_size.result index ffee1a01158..388c8e67b68 100644 --- a/mysql-test/suite/rpl/r/rpl_mixed_binlog_max_cache_size.result +++ b/mysql-test/suite/rpl/r/rpl_mixed_binlog_max_cache_size.result @@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590] Got one of the listed errors include/wait_for_slave_sql_error_and_skip.inc [errno=1590] include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 2 - BEGIN - IMPLICIT COMMIT by DDL ######################################################################################## @@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');; CREATE TABLE t5 (a int); connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 3 - BEGIN - COMMIT ######################################################################################## @@ -77,10 +69,6 @@ Got one of the listed errors COMMIT; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 4 - BEGIN - ROLLBACK ######################################################################################## @@ -97,10 +85,6 @@ Warnings: Warning 1196 Some non-transactional changed tables couldn't be rolled back connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 5 - PROCEDURE ######################################################################################## @@ -127,10 +111,6 @@ Got one of the listed errors ROLLBACK; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 6 - XID ######################################################################################## @@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back COMMIT; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 7 - NON-TRANS TABLE ######################################################################################## @@ -176,10 +152,6 @@ Got one of the listed errors COMMIT; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################## # 8 - Bug#55375(Regression Bug) Transaction bigger than # max_binlog_cache_size crashes slave diff --git a/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result b/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result index 24eedb5a0d5..f900a8b0e9a 100644 --- a/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result +++ b/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result @@ -332,10 +332,6 @@ SET AUTOCOMMIT= 1; ################################################################################### connection slave; include/diff_tables.inc [master:tt_1,slave:tt_1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ################################################################################### # CLEAN ################################################################################### diff --git a/mysql-test/suite/rpl/r/rpl_nondeterministic_functions.result b/mysql-test/suite/rpl/r/rpl_nondeterministic_functions.result index 93a81cd3cf7..630bfa226cf 100644 --- a/mysql-test/suite/rpl/r/rpl_nondeterministic_functions.result +++ b/mysql-test/suite/rpl/r/rpl_nondeterministic_functions.result @@ -22,10 +22,6 @@ INSERT INTO t1 VALUES (RAND()); INSERT INTO t1 VALUES (LAST_INSERT_ID()); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_not_null_innodb.result b/mysql-test/suite/rpl/r/rpl_not_null_innodb.result index 40898c452dc..2d53a525f2c 100644 --- a/mysql-test/suite/rpl/r/rpl_not_null_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_not_null_innodb.result @@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5); connection slave; TABLES t1 and t2 must be equal otherwise an error will be thrown. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead TABLES t2 and t3 must be different. connection master; SELECT * FROM t3 ORDER BY a; @@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300); connection slave; TABLES t1 and t2 must be equal otherwise an error will be thrown. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ************* CLEANING ************* connection master; DROP TABLE t1; @@ -151,10 +139,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, b'00'); TABLES t1 and t2 must be equal otherwise an error will be thrown. connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_not_null_myisam.result b/mysql-test/suite/rpl/r/rpl_not_null_myisam.result index 83b7804f133..93c13e9943f 100644 --- a/mysql-test/suite/rpl/r/rpl_not_null_myisam.result +++ b/mysql-test/suite/rpl/r/rpl_not_null_myisam.result @@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5); connection slave; TABLES t1 and t2 must be equal otherwise an error will be thrown. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead TABLES t2 and t3 must be different. connection master; SELECT * FROM t3 ORDER BY a; @@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300); connection slave; TABLES t1 and t2 must be equal otherwise an error will be thrown. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ************* CLEANING ************* connection master; DROP TABLE t1; @@ -151,10 +139,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, b'00'); TABLES t1 and t2 must be equal otherwise an error will be thrown. connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_reset_slave_fail.result b/mysql-test/suite/rpl/r/rpl_reset_slave_fail.result index 3173c8b768b..34ce68cb079 100644 --- a/mysql-test/suite/rpl/r/rpl_reset_slave_fail.result +++ b/mysql-test/suite/rpl/r/rpl_reset_slave_fail.result @@ -31,10 +31,6 @@ include/start_slave.inc connection master; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_row_basic_2myisam.result b/mysql-test/suite/rpl/r/rpl_row_basic_2myisam.result index 9cea1883839..1d4b31a4a87 100644 --- a/mysql-test/suite/rpl/r/rpl_row_basic_2myisam.result +++ b/mysql-test/suite/rpl/r/rpl_row_basic_2myisam.result @@ -535,20 +535,12 @@ INSERT INTO t1 VALUES (1, "", 1); INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead [expecting slave to replicate correctly] connection master; INSERT INTO t2 VALUES (1, "", 1); INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2); connection slave; include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection slave; SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; call mtr.add_suppression("Slave SQL.*Table definition on master and slave does not match: Column 1 size mismatch.* error.* 1535"); @@ -562,10 +554,6 @@ INSERT INTO t4 VALUES (1, "", 1); INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2); connection slave; include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead [expecting slave to stop] connection master; INSERT INTO t5 VALUES (1, "", 1); @@ -588,10 +576,6 @@ INSERT INTO t7 VALUES (1, "", 1); INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2); connection slave; include/diff_tables.inc [master:t7, slave:t7] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1, t2, t3, t4, t5, t6, t7; connection slave; @@ -603,10 +587,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY' INSERT INTO t1 VALUES (4); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; connection slave; @@ -665,10 +645,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6; connection slave; *** results: t2 must be consistent **** include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1, t2; EOF OF TESTS @@ -688,10 +664,6 @@ UPDATE t1 SET a = 0 WHERE a < 4; UPDATE t1 SET a = 8 WHERE a < 5; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; connection slave; @@ -739,10 +711,6 @@ INSERT INTO t1 ( a ) VALUES ( 1 ); UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_row_basic_3innodb.result b/mysql-test/suite/rpl/r/rpl_row_basic_3innodb.result index 38575a29943..1e3ddd4f289 100644 --- a/mysql-test/suite/rpl/r/rpl_row_basic_3innodb.result +++ b/mysql-test/suite/rpl/r/rpl_row_basic_3innodb.result @@ -540,20 +540,12 @@ INSERT INTO t1 VALUES (1, "", 1); INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead [expecting slave to replicate correctly] connection master; INSERT INTO t2 VALUES (1, "", 1); INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2); connection slave; include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection slave; SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; call mtr.add_suppression("Slave SQL.*Table definition on master and slave does not match: Column 1 size mismatch.* error.* 1535"); @@ -567,10 +559,6 @@ INSERT INTO t4 VALUES (1, "", 1); INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2); connection slave; include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead [expecting slave to stop] connection master; INSERT INTO t5 VALUES (1, "", 1); @@ -593,10 +581,6 @@ INSERT INTO t7 VALUES (1, "", 1); INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2); connection slave; include/diff_tables.inc [master:t7, slave:t7] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1, t2, t3, t4, t5, t6, t7; connection slave; @@ -608,10 +592,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY' INSERT INTO t1 VALUES (4); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; connection slave; @@ -670,10 +650,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6; connection slave; *** results: t2 must be consistent **** include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1, t2; EOF OF TESTS @@ -693,10 +669,6 @@ UPDATE t1 SET a = 0 WHERE a < 4; UPDATE t1 SET a = 8 WHERE a < 5; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; connection slave; @@ -748,10 +720,6 @@ UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3; connection slave; SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_row_find_row.result b/mysql-test/suite/rpl/r/rpl_row_find_row.result index 9f83ebf555e..e9ce7e6e21b 100644 --- a/mysql-test/suite/rpl/r/rpl_row_find_row.result +++ b/mysql-test/suite/rpl/r/rpl_row_find_row.result @@ -34,10 +34,6 @@ INSERT INTO t1(c1,c2) VALUES(1,2); UPDATE t1 SET c1=1000 WHERE c2=2; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_row_img_blobs.result b/mysql-test/suite/rpl/r/rpl_row_img_blobs.result index c444802aefb..546f42b61aa 100644 --- a/mysql-test/suite/rpl/r/rpl_row_img_blobs.result +++ b/mysql-test/suite/rpl/r/rpl_row_img_blobs.result @@ -66,24 +66,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -119,24 +107,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -172,24 +148,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -225,24 +189,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -277,24 +229,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -329,24 +269,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -381,24 +309,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -436,24 +352,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -489,24 +393,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -542,24 +434,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -595,24 +475,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -647,24 +515,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -699,24 +555,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -751,24 +595,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -806,24 +638,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -859,24 +679,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -912,24 +720,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -965,24 +761,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1017,24 +801,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1069,24 +841,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1121,24 +881,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1176,24 +924,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1229,24 +965,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1282,24 +1006,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1335,24 +1047,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1387,24 +1087,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1439,24 +1127,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1491,24 +1167,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1546,24 +1210,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1599,24 +1251,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1652,24 +1292,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1705,24 +1333,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1757,24 +1373,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1809,24 +1413,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1861,24 +1453,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1916,24 +1496,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1969,24 +1537,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2022,24 +1578,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2075,24 +1619,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2127,24 +1659,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2179,24 +1699,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2231,24 +1739,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2286,24 +1782,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2339,24 +1823,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2392,24 +1864,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2445,24 +1905,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2497,24 +1945,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2549,24 +1985,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2601,24 +2025,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2656,24 +2068,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2709,24 +2109,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2762,24 +2150,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2815,24 +2191,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2867,24 +2231,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2919,24 +2271,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2971,24 +2311,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3055,24 +2383,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3108,24 +2424,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3161,24 +2465,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3214,24 +2506,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3266,24 +2546,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3318,24 +2586,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3370,24 +2626,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3425,24 +2669,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3478,24 +2710,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3531,24 +2751,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3584,24 +2792,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3636,24 +2832,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3688,24 +2872,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3740,24 +2912,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3795,24 +2955,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3848,24 +2996,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3901,24 +3037,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3954,24 +3078,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4006,24 +3118,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4058,24 +3158,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4110,24 +3198,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4165,24 +3241,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4218,24 +3282,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4271,24 +3323,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4324,24 +3364,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4376,24 +3404,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4428,24 +3444,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4480,24 +3484,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4535,24 +3527,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4588,24 +3568,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4641,24 +3609,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4694,24 +3650,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4746,24 +3690,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4798,24 +3730,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4850,24 +3770,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4905,24 +3813,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4958,24 +3854,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5011,24 +3895,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5064,24 +3936,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5116,24 +3976,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5168,24 +4016,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5220,24 +4056,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5275,24 +4099,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5328,24 +4140,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5381,24 +4181,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5434,24 +4222,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5486,24 +4262,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5538,24 +4302,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5590,24 +4342,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5645,24 +4385,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5698,24 +4426,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5751,24 +4467,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5804,24 +4508,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5856,24 +4548,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5908,24 +4588,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5960,24 +4628,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6044,24 +4700,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6097,24 +4741,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6150,24 +4782,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6203,24 +4823,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6255,24 +4863,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6307,24 +4903,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6359,24 +4943,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6414,24 +4986,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6467,24 +5027,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6520,24 +5068,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6573,24 +5109,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6625,24 +5149,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6677,24 +5189,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6729,24 +5229,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6784,24 +5272,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6837,24 +5313,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6890,24 +5354,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6943,24 +5395,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -6995,24 +5435,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7047,24 +5475,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7099,24 +5515,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7154,24 +5558,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7207,24 +5599,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7260,24 +5640,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7313,24 +5681,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7365,24 +5721,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7417,24 +5761,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7469,24 +5801,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7524,24 +5844,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7577,24 +5885,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7630,24 +5926,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7683,24 +5967,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7735,24 +6007,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7787,24 +6047,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7839,24 +6087,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7894,24 +6130,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -7947,24 +6171,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8000,24 +6212,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8053,24 +6253,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8105,24 +6293,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8157,24 +6333,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8209,24 +6373,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8264,24 +6416,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8317,24 +6457,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8370,24 +6498,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8423,24 +6539,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8475,24 +6579,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8527,24 +6619,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8579,24 +6659,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8634,24 +6702,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8687,24 +6743,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8740,24 +6784,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8793,24 +6825,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8845,24 +6865,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8897,24 +6905,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -8949,24 +6945,12 @@ UPDATE t SET c1=30 WHERE c3=30; UPDATE t SET c3=40 WHERE c1=30; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c2="a"; DELETE FROM t WHERE c1=20; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc diff --git a/mysql-test/suite/rpl/r/rpl_row_img_eng_min.result b/mysql-test/suite/rpl/r/rpl_row_img_eng_min.result index 57195c1fe3f..965f74a5b94 100644 --- a/mysql-test/suite/rpl/r/rpl_row_img_eng_min.result +++ b/mysql-test/suite/rpl/r/rpl_row_img_eng_min.result @@ -74,24 +74,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -135,24 +123,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -196,24 +172,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -257,24 +221,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -318,24 +270,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -379,24 +319,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -440,24 +368,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -501,24 +417,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -562,24 +466,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -623,24 +515,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -684,24 +564,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -745,24 +613,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -808,24 +664,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -869,24 +713,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -930,24 +762,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -991,24 +811,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1052,24 +860,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1113,24 +909,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1174,24 +958,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1235,24 +1007,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1296,24 +1056,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1357,24 +1105,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1418,24 +1154,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1479,24 +1203,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1542,24 +1254,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1603,24 +1303,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1664,24 +1352,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1725,24 +1401,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1786,24 +1450,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1847,24 +1499,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1908,24 +1548,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1969,24 +1597,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2030,24 +1646,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2091,24 +1695,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2152,24 +1744,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2213,24 +1793,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2276,24 +1844,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2337,24 +1893,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2398,24 +1942,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2459,24 +1991,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2520,24 +2040,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2581,24 +2089,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2642,24 +2138,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2703,24 +2187,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2764,24 +2236,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2825,24 +2285,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2886,24 +2334,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2947,24 +2383,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3010,24 +2434,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3071,24 +2483,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3132,24 +2532,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3193,24 +2581,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3254,24 +2630,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3315,24 +2679,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3376,24 +2728,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3437,24 +2777,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3498,24 +2826,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3559,24 +2875,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3620,24 +2924,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3681,24 +2973,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3744,24 +3024,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3805,24 +3073,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3866,24 +3122,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3927,24 +3171,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3988,24 +3220,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4049,24 +3269,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4110,24 +3318,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4171,24 +3367,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4232,24 +3416,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4293,24 +3465,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4354,24 +3514,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4415,24 +3563,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4478,24 +3614,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4539,24 +3663,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4600,24 +3712,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4661,24 +3761,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4722,24 +3810,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4783,24 +3859,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4844,24 +3908,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4905,24 +3957,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4966,24 +4006,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5027,24 +4055,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5088,24 +4104,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5149,24 +4153,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5212,24 +4204,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5273,24 +4253,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5334,24 +4302,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5395,24 +4351,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5456,24 +4400,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5517,24 +4449,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5578,24 +4498,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5639,24 +4547,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5700,24 +4596,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5761,24 +4645,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5822,24 +4694,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5883,24 +4743,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc diff --git a/mysql-test/suite/rpl/r/rpl_row_img_eng_noblob.result b/mysql-test/suite/rpl/r/rpl_row_img_eng_noblob.result index 112b98035c3..6a9eb40226a 100644 --- a/mysql-test/suite/rpl/r/rpl_row_img_eng_noblob.result +++ b/mysql-test/suite/rpl/r/rpl_row_img_eng_noblob.result @@ -74,24 +74,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -135,24 +123,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -196,24 +172,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -257,24 +221,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -318,24 +270,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -379,24 +319,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -440,24 +368,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -501,24 +417,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -562,24 +466,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -623,24 +515,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -684,24 +564,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -745,24 +613,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -808,24 +664,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -869,24 +713,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -930,24 +762,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -991,24 +811,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1052,24 +860,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1113,24 +909,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1174,24 +958,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1235,24 +1007,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1296,24 +1056,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1357,24 +1105,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1418,24 +1154,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1479,24 +1203,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1542,24 +1254,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1603,24 +1303,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1664,24 +1352,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1725,24 +1401,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1786,24 +1450,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1847,24 +1499,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1908,24 +1548,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -1969,24 +1597,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2030,24 +1646,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2091,24 +1695,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2152,24 +1744,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2213,24 +1793,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2276,24 +1844,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2337,24 +1893,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2398,24 +1942,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2459,24 +1991,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2520,24 +2040,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2581,24 +2089,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2642,24 +2138,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2703,24 +2187,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2764,24 +2236,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2825,24 +2285,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2886,24 +2334,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -2947,24 +2383,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3010,24 +2434,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3071,24 +2483,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3132,24 +2532,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3193,24 +2581,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3254,24 +2630,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3315,24 +2679,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3376,24 +2728,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3437,24 +2777,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3498,24 +2826,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3559,24 +2875,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3620,24 +2924,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3681,24 +2973,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3744,24 +3024,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3805,24 +3073,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3866,24 +3122,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3927,24 +3171,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -3988,24 +3220,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4049,24 +3269,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4110,24 +3318,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4171,24 +3367,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4232,24 +3416,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4293,24 +3465,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4354,24 +3514,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4415,24 +3563,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4478,24 +3614,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4539,24 +3663,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4600,24 +3712,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4661,24 +3761,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4722,24 +3810,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4783,24 +3859,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4844,24 +3908,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4905,24 +3957,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -4966,24 +4006,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5027,24 +4055,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5088,24 +4104,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5149,24 +4153,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5212,24 +4204,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5273,24 +4253,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5334,24 +4302,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5395,24 +4351,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5456,24 +4400,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5517,24 +4449,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5578,24 +4498,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5639,24 +4547,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5700,24 +4596,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5761,24 +4645,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5822,24 +4694,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc @@ -5883,24 +4743,12 @@ UPDATE t SET c2 = '0' WHERE c4 = '0'; UPDATE t SET c2 = '2' WHERE c4 = '2'; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DELETE FROM t WHERE c1 = 7; DELETE FROM t WHERE c1 = 8; DELETE FROM t; include/rpl_sync.inc include/diff_tables.inc [server_1:test.t, server_2:test.t, server_3:test.t] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection server_1; DROP TABLE t; include/rpl_sync.inc diff --git a/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result b/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result index b82c303ae6a..ef393873b97 100644 --- a/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result +++ b/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result @@ -417,10 +417,6 @@ SET AUTOCOMMIT= 1; ################################################################################### connection slave; include/diff_tables.inc [master:tt_1,slave:tt_1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ################################################################################### # CLEAN ################################################################################### diff --git a/mysql-test/suite/rpl/r/rpl_row_loaddata_concurrent.result b/mysql-test/suite/rpl/r/rpl_row_loaddata_concurrent.result index ab29acae31d..0704f5c69a1 100644 --- a/mysql-test/suite/rpl/r/rpl_row_loaddata_concurrent.result +++ b/mysql-test/suite/rpl/r/rpl_row_loaddata_concurrent.result @@ -135,10 +135,6 @@ connection master; connection slave; use b48297_db1; include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP DATABASE b48297_db1; DROP DATABASE b42897_db2; diff --git a/mysql-test/suite/rpl/r/rpl_row_merge_engine.result b/mysql-test/suite/rpl/r/rpl_row_merge_engine.result index d58162e04b5..ecc0e6d6d18 100644 --- a/mysql-test/suite/rpl/r/rpl_row_merge_engine.result +++ b/mysql-test/suite/rpl/r/rpl_row_merge_engine.result @@ -10,30 +10,14 @@ 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] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:test.t2, slave:test.t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead 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] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:test.t2, slave:test.t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead DROP TABLE t1_merge, t1, t2; connection slave; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_row_rec_comp_innodb.result b/mysql-test/suite/rpl/r/rpl_row_rec_comp_innodb.result index 15ea775f315..a558e113c77 100644 --- a/mysql-test/suite/rpl/r/rpl_row_rec_comp_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_row_rec_comp_innodb.result @@ -9,10 +9,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); UPDATE IGNORE t1 SET c5 = 'a'; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); UPDATE IGNORE t1 SET c5 = 'a'; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -42,10 +34,6 @@ INSERT INTO t1(c1) VALUES (NULL); UPDATE t1 SET c1= 0; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_row_rec_comp_myisam.result b/mysql-test/suite/rpl/r/rpl_row_rec_comp_myisam.result index 2fa3d146664..915cf030e06 100644 --- a/mysql-test/suite/rpl/r/rpl_row_rec_comp_myisam.result +++ b/mysql-test/suite/rpl/r/rpl_row_rec_comp_myisam.result @@ -10,10 +10,6 @@ INSERT INTO t1(c1,c2) VALUES (NULL, b'1'); UPDATE t1 SET c1= 0; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); UPDATE IGNORE t1 SET c5 = 'a'; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -43,10 +35,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); UPDATE IGNORE t1 SET c5 = 'a'; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -59,10 +47,6 @@ INSERT INTO t1(c1) VALUES (NULL); UPDATE t1 SET c1= 0; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_row_tbl_metadata.result b/mysql-test/suite/rpl/r/rpl_row_tbl_metadata.result index 5575f0d8a76..c8f8d0fc4a1 100644 --- a/mysql-test/suite/rpl/r/rpl_row_tbl_metadata.result +++ b/mysql-test/suite/rpl/r/rpl_row_tbl_metadata.result @@ -158,10 +158,6 @@ connection slave; connection master; ### assertion: the slave replicated event successfully and tables match include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead DROP TABLE `t1`; connection master; connection slave; @@ -186,91 +182,51 @@ connection master; FLUSH LOGS; ### assertion: the slave replicated event successfully and tables match for t10 include/diff_tables.inc [master:t10, slave:t10] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t9 include/diff_tables.inc [master:t9, slave:t9] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t8 include/diff_tables.inc [master:t8, slave:t8] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t7 include/diff_tables.inc [master:t7, slave:t7] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t6 include/diff_tables.inc [master:t6, slave:t6] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t5 include/diff_tables.inc [master:t5, slave:t5] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t4 include/diff_tables.inc [master:t4, slave:t4] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t3 include/diff_tables.inc [master:t3, slave:t3] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t2 include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; ### assertion: the slave replicated event successfully and tables match for t1 include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; connection slave; connection master; diff --git a/mysql-test/suite/rpl/r/rpl_row_utf16.result b/mysql-test/suite/rpl/r/rpl_row_utf16.result index 1090bab3a5d..c6a6c4f8520 100644 --- a/mysql-test/suite/rpl/r/rpl_row_utf16.result +++ b/mysql-test/suite/rpl/r/rpl_row_utf16.result @@ -15,10 +15,6 @@ hex(c1) 006100620063 c1 ola hex(c1) 006F006C0061 include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_set_null_innodb.result b/mysql-test/suite/rpl/r/rpl_set_null_innodb.result index 82988039df1..0daab7561c1 100644 --- a/mysql-test/suite/rpl/r/rpl_set_null_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_set_null_innodb.result @@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 ); UPDATE t1 SET c1=NULL where c2=1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DELETE FROM t1 WHERE c2=1 LIMIT 1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -32,18 +24,10 @@ w UPDATE t1 SET c1=NULL WHERE c1='w'; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DELETE FROM t1 LIMIT 2; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_set_null_myisam.result b/mysql-test/suite/rpl/r/rpl_set_null_myisam.result index 9bad1817a2c..7ec3e62fab4 100644 --- a/mysql-test/suite/rpl/r/rpl_set_null_myisam.result +++ b/mysql-test/suite/rpl/r/rpl_set_null_myisam.result @@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 ); UPDATE t1 SET c1=NULL where c2=1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DELETE FROM t1 WHERE c2=1 LIMIT 1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; @@ -32,18 +24,10 @@ w UPDATE t1 SET c1=NULL WHERE c1='w'; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DELETE FROM t1 LIMIT 2; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_slave_load_in.result b/mysql-test/suite/rpl/r/rpl_slave_load_in.result index deda93cb845..aeabdb79677 100644 --- a/mysql-test/suite/rpl/r/rpl_slave_load_in.result +++ b/mysql-test/suite/rpl/r/rpl_slave_load_in.result @@ -12,15 +12,7 @@ load data infile '../../std_data/rpl_loaddata.dat' into table t2; commit; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1; drop table t2; diff --git a/mysql-test/suite/rpl/r/rpl_special_charset.result b/mysql-test/suite/rpl/r/rpl_special_charset.result index 728f4114aa7..b947cf3484d 100644 --- a/mysql-test/suite/rpl/r/rpl_special_charset.result +++ b/mysql-test/suite/rpl/r/rpl_special_charset.result @@ -5,10 +5,6 @@ CREATE TABLE t1(i VARCHAR(20)); INSERT INTO t1 VALUES (0xFFFF); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result b/mysql-test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result index ffee1a01158..388c8e67b68 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result +++ b/mysql-test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result @@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590] Got one of the listed errors include/wait_for_slave_sql_error_and_skip.inc [errno=1590] include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 2 - BEGIN - IMPLICIT COMMIT by DDL ######################################################################################## @@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');; CREATE TABLE t5 (a int); connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 3 - BEGIN - COMMIT ######################################################################################## @@ -77,10 +69,6 @@ Got one of the listed errors COMMIT; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 4 - BEGIN - ROLLBACK ######################################################################################## @@ -97,10 +85,6 @@ Warnings: Warning 1196 Some non-transactional changed tables couldn't be rolled back connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 5 - PROCEDURE ######################################################################################## @@ -127,10 +111,6 @@ Got one of the listed errors ROLLBACK; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 6 - XID ######################################################################################## @@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back COMMIT; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################################## # 7 - NON-TRANS TABLE ######################################################################################## @@ -176,10 +152,6 @@ Got one of the listed errors COMMIT; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ######################################################################## # 8 - Bug#55375(Regression Bug) Transaction bigger than # max_binlog_cache_size crashes slave diff --git a/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result b/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result index 24eedb5a0d5..f900a8b0e9a 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result +++ b/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result @@ -332,10 +332,6 @@ SET AUTOCOMMIT= 1; ################################################################################### connection slave; include/diff_tables.inc [master:tt_1,slave:tt_1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ################################################################################### # CLEAN ################################################################################### diff --git a/mysql-test/suite/rpl/r/rpl_stm_loaddata_concurrent.result b/mysql-test/suite/rpl/r/rpl_stm_loaddata_concurrent.result index 6bfc7dedd7b..f510eae74f8 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_loaddata_concurrent.result +++ b/mysql-test/suite/rpl/r/rpl_stm_loaddata_concurrent.result @@ -136,10 +136,6 @@ connection master; connection slave; use b48297_db1; include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP DATABASE b48297_db1; DROP DATABASE b42897_db2; diff --git a/mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result b/mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result index 1dde93df372..3113eec9e10 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result +++ b/mysql-test/suite/rpl/r/rpl_stm_relay_ign_space.result @@ -2,9 +2,5 @@ include/master-slave.inc [connection master] include/assert.inc [Assert that relay log space is close to the limit] include/diff_tables.inc [master:test.t1,slave:test.t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection slave; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_stm_user_variables.result b/mysql-test/suite/rpl/r/rpl_stm_user_variables.result index 02176068a14..cb2120523b2 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_user_variables.result +++ b/mysql-test/suite/rpl/r/rpl_stm_user_variables.result @@ -221,10 +221,6 @@ SET sql_mode = DEFAULT; connection slave; ## assertion: master and slave tables are in sync include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TRIGGER tr1; DROP TABLE t1; diff --git a/mysql-test/suite/rpl/r/rpl_stop_slave.result b/mysql-test/suite/rpl/r/rpl_stop_slave.result index 2e143f84f5a..4b9c544527b 100644 --- a/mysql-test/suite/rpl/r/rpl_stop_slave.result +++ b/mysql-test/suite/rpl/r/rpl_stop_slave.result @@ -40,10 +40,6 @@ include/wait_for_slave_sql_to_stop.inc # Slave should stop after the transaction has committed. # So t1 on master is same to t1 on slave. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection slave; START SLAVE SQL_THREAD; include/wait_for_slave_sql_to_start.inc @@ -72,10 +68,6 @@ include/wait_for_slave_sql_to_stop.inc # Slave should stop after the transaction has committed. # So t1 on master is same to t1 on slave. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection slave; START SLAVE SQL_THREAD; include/wait_for_slave_sql_to_start.inc diff --git a/mysql-test/suite/rpl/r/rpl_sync.result b/mysql-test/suite/rpl/r/rpl_sync.result index 90c90f269c6..1240c446164 100644 --- a/mysql-test/suite/rpl/r/rpl_sync.result +++ b/mysql-test/suite/rpl/r/rpl_sync.result @@ -29,10 +29,6 @@ include/start_slave.inc connection master; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead =====Corrupting the master.info=======; connection slave; include/stop_slave.inc @@ -51,10 +47,6 @@ include/start_slave.inc connection master; connection slave; include/diff_tables.inc [master:t1,slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead =====Clean up=======; connection master; drop table t1; diff --git a/mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result b/mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result index 61f0fdde3cf..24d7d6cebf7 100644 --- a/mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result +++ b/mysql-test/suite/rpl/r/rpl_temp_table_mix_row.result @@ -134,10 +134,6 @@ master-bin.000001 # Query # # COMMIT connection slave; # Compare the base table. include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; diff --git a/mysql-test/suite/rpl/r/rpl_test_framework.result b/mysql-test/suite/rpl/r/rpl_test_framework.result index 27c85ba5a16..63585deb56a 100644 --- a/mysql-test/suite/rpl/r/rpl_test_framework.result +++ b/mysql-test/suite/rpl/r/rpl_test_framework.result @@ -14,12 +14,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (1); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=2 -> 3] include/rpl_generate_sync_chain.inc @@ -32,12 +26,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (2); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=none] include/rpl_generate_sync_chain.inc @@ -53,12 +41,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (3); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=1->2, 2->1] include/rpl_generate_sync_chain.inc @@ -71,12 +53,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (4); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=1->2->1] include/rpl_generate_sync_chain.inc @@ -89,12 +65,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (5); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=2->1->2] include/rpl_generate_sync_chain.inc @@ -107,12 +77,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (6); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=1->2->3] include/rpl_generate_sync_chain.inc @@ -122,12 +86,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (7); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=2->3->2->1] include/rpl_generate_sync_chain.inc @@ -137,12 +95,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (8); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=1->2,2->3,3->1] include/rpl_generate_sync_chain.inc @@ -152,12 +104,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (9); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=1->3->2->1] include/rpl_generate_sync_chain.inc @@ -167,12 +113,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (10); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc ==== Test 6-server topologies ==== include/rpl_init.inc [topology=1->2->3->4->1->5->6] @@ -183,18 +123,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (11); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=3->4->5->6->3->1->2] include/rpl_generate_sync_chain.inc @@ -204,18 +132,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (12); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=6->5->4->3->2->1] include/rpl_generate_sync_chain.inc @@ -225,18 +141,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (13); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc include/rpl_init.inc [topology=1->2->3->1,4->5->6] include/rpl_generate_sync_chain.inc @@ -249,18 +153,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (14); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc ==== Test 9-server topology ==== include/rpl_init.inc [topology=1->2, 2->3, 3->4, 4->5, 5->1, 1->6, 6->7, 6->8, 8->9] @@ -271,24 +163,6 @@ DELETE FROM t1; INSERT INTO t1 VALUES (15); include/rpl_sync.inc include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1,server_7:t1,server_8:t1,server_9:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/rpl_end.inc ==== Clean up ==== include/rpl_init.inc [topology=1->2->3->4->5->6->7->8->9] diff --git a/mysql-test/suite/rpl/r/rpl_trigger.result b/mysql-test/suite/rpl/r/rpl_trigger.result index ec1c70571b8..06d5a3c895f 100644 --- a/mysql-test/suite/rpl/r/rpl_trigger.result +++ b/mysql-test/suite/rpl/r/rpl_trigger.result @@ -1097,15 +1097,7 @@ Warnings: Warning 1196 Some non-transactional changed tables couldn't be rolled back connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:log, slave:log] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; drop table t1, log; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_truncate_2myisam.result b/mysql-test/suite/rpl/r/rpl_truncate_2myisam.result index d823133e4f5..a8a08ef564d 100644 --- a/mysql-test/suite/rpl/r/rpl_truncate_2myisam.result +++ b/mysql-test/suite/rpl/r/rpl_truncate_2myisam.result @@ -9,10 +9,6 @@ connection master; TRUNCATE TABLE t1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ==== Test using a table with delete triggers ==== connection master; SET @count := 1; @@ -23,10 +19,6 @@ connection master; TRUNCATE TABLE t1; connection slave; include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1,t2; connection slave; @@ -39,10 +31,6 @@ connection master; DELETE FROM t1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ==== Test using a table with delete triggers ==== connection master; SET @count := 1; @@ -53,10 +41,6 @@ connection master; DELETE FROM t1; connection slave; include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1,t2; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_truncate_3innodb.result b/mysql-test/suite/rpl/r/rpl_truncate_3innodb.result index 14118562ae8..da03d2e8cc3 100644 --- a/mysql-test/suite/rpl/r/rpl_truncate_3innodb.result +++ b/mysql-test/suite/rpl/r/rpl_truncate_3innodb.result @@ -9,10 +9,6 @@ connection master; TRUNCATE TABLE t1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ==== Test using a table with delete triggers ==== connection master; SET @count := 1; @@ -23,10 +19,6 @@ connection master; TRUNCATE TABLE t1; connection slave; include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1,t2; connection slave; @@ -39,10 +31,6 @@ connection master; DELETE FROM t1; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ==== Test using a table with delete triggers ==== connection master; SET @count := 1; @@ -53,10 +41,6 @@ connection master; DELETE FROM t1; connection slave; include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1,t2; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_typeconv_innodb.result b/mysql-test/suite/rpl/r/rpl_typeconv_innodb.result index a1cda543f57..0ea02440b93 100644 --- a/mysql-test/suite/rpl/r/rpl_typeconv_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_typeconv_innodb.result @@ -8,10 +8,6 @@ CREATE TABLE t1(b1 BIT(1), b2 BIT(2), b3 BIT(3)) ENGINE=InnoDB; INSERT INTO t1 VALUES (b'0', b'01', b'101'); connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; connection slave; diff --git a/mysql-test/suite/rpl/r/rpl_unsafe_statements.result b/mysql-test/suite/rpl/r/rpl_unsafe_statements.result index 047b19f21d5..ca790f5d148 100644 --- a/mysql-test/suite/rpl/r/rpl_unsafe_statements.result +++ b/mysql-test/suite/rpl/r/rpl_unsafe_statements.result @@ -16,15 +16,7 @@ UNLOCK TABLES; COMMIT; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1,t2; CREATE TABLE t1(i INT) ENGINE=INNODB; @@ -41,15 +33,7 @@ UNLOCK TABLES; COMMIT; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead include/diff_tables.inc [master:t2, slave:t2] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1,t2; CREATE TABLE t1(i int, id INT AUTO_INCREMENT, PRIMARY KEY (i, id)) ENGINE=MYISAM; @@ -61,10 +45,6 @@ UNLOCK TABLES; COMMIT; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; CREATE TABLE t1(i INT, j INT, UNIQUE KEY(i), UNIQUE KEY(j)) ENGINE=INNODB; @@ -76,10 +56,6 @@ UNLOCK TABLES; COMMIT; connection slave; include/diff_tables.inc [master:t1, slave:t1] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead connection master; DROP TABLE t1; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_variables.result b/mysql-test/suite/rpl/r/rpl_variables.result index b0cd3671a30..dcd4b4ec884 100644 --- a/mysql-test/suite/rpl/r/rpl_variables.result +++ b/mysql-test/suite/rpl/r/rpl_variables.result @@ -573,26 +573,6 @@ id truth num text 32 NULL NULL Centrum connection slave; include/diff_tables.inc [master:tstmt, master:tproc, master:tfunc, master:ttrig, master:tprep, slave:tstmt, slave:tproc, slave:tfunc, slave:ttrig, slave:tprep] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ==== Clean up ==== connection master; DROP PROCEDURE proc; diff --git a/mysql-test/suite/rpl/r/rpl_variables_stm.result b/mysql-test/suite/rpl/r/rpl_variables_stm.result index eb4ac403e12..f3d80977a6b 100644 --- a/mysql-test/suite/rpl/r/rpl_variables_stm.result +++ b/mysql-test/suite/rpl/r/rpl_variables_stm.result @@ -488,26 +488,6 @@ id num text 58 NULL 1717 connection slave; include/diff_tables.inc [master:tstmt, master:tproc, master:tfunc, master:ttrig, master:tprep, slave:tstmt, slave:tproc, slave:tfunc, slave:ttrig, slave:tprep] -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead -Warnings: -Warning 1287 ' INTO FROM...' instead ==== Clean up ==== connection master; DROP PROCEDURE proc; -- cgit v1.2.1 From 76151f3cbc0dbba2cda9a44b7b0e7dc1302c3dc4 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 14 Oct 2018 13:52:52 +0200 Subject: Use mysql.user.authentication_string for password Don't distinguish between a "password hash" and "authentication string" anymore. Now both are stored in mysql.user.authentication_string, both are handled identically internally. A "password hash" is just how some particular plugins interpret authentication string. Set mysql.user.plugin even if there is no password. The server will use mysql_native_password plugin in these cases, let's make it expicit. Remove LEX_USER::pwhash. --- mysql-test/suite/rpl/r/rpl_create_drop_user.result | 44 +++++++++++----------- mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result | 12 +++--- mysql-test/suite/rpl/t/rpl_create_drop_user.test | 18 ++++++--- 3 files changed, 40 insertions(+), 34 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_create_drop_user.result b/mysql-test/suite/rpl/r/rpl_create_drop_user.result index f8cc271e8cf..f9069530e82 100644 --- a/mysql-test/suite/rpl/r/rpl_create_drop_user.result +++ b/mysql-test/suite/rpl/r/rpl_create_drop_user.result @@ -17,15 +17,15 @@ CURRENT_USER u2@localhost disconnect user_a; connection master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; -user password -u1 *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 -u2 +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; +user password plugin authentication_string +u1 mysql_native_password *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 +u2 mysql_native_password connection slave; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; -user password -u1 *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 -u2 +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; +user password plugin authentication_string +u1 mysql_native_password *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 +u2 mysql_native_password connection master; CREATE OR REPLACE USER u1@localhost IDENTIFIED BY 'abcdefghijk2'; connect user_a, localhost, u1,'abcdefghijk2',; @@ -35,25 +35,25 @@ CURRENT_USER u1@localhost disconnect user_a; connection master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; -user password -u1 *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E -u2 +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; +user password plugin authentication_string +u1 mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E +u2 mysql_native_password connection slave; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; -user password -u1 *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E -u2 +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; +user password plugin authentication_string +u1 mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E +u2 mysql_native_password connection master; CREATE USER u1@localhost; ERROR HY000: Operation CREATE USER failed for 'u1'@'localhost' DROP USER u3@localhost; ERROR HY000: Operation DROP USER failed for 'u3'@'localhost' connection slave; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; -user password -u1 *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E -u2 +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; +user password plugin authentication_string +u1 mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E +u2 mysql_native_password connection master; DROP USER IF EXISTS u1@localhost; DROP USER u2@localhost; @@ -61,6 +61,6 @@ DROP USER IF EXISTS u3@localhost; Warnings: Note 1974 Can't drop user 'u3'@'localhost'; it doesn't exist connection slave; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; -user password +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; +user password plugin authentication_string include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result index 24ce8899e2c..0bcc2dd186d 100644 --- a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result +++ b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result @@ -482,36 +482,36 @@ SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; CREATE USER 'user_test_rpl'@'localhost' IDENTIFIED BY PASSWORD '*1111111111111111111111111111111111111111'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl *1111111111111111111111111111111111111111 N +localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl *1111111111111111111111111111111111111111 N +localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N connection master; ******************** GRANT ******************** GRANT SELECT ON *.* TO 'user_test_rpl'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl *1111111111111111111111111111111111111111 Y +localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 Y connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl *1111111111111111111111111111111111111111 Y +localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 Y connection master; ******************** REVOKE ******************** REVOKE SELECT ON *.* FROM 'user_test_rpl'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl *1111111111111111111111111111111111111111 N +localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl *1111111111111111111111111111111111111111 N +localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N connection master; ******************** SET PASSWORD ******************** diff --git a/mysql-test/suite/rpl/t/rpl_create_drop_user.test b/mysql-test/suite/rpl/t/rpl_create_drop_user.test index 5fcf0a14c36..c5f193a0d0c 100644 --- a/mysql-test/suite/rpl/t/rpl_create_drop_user.test +++ b/mysql-test/suite/rpl/t/rpl_create_drop_user.test @@ -15,9 +15,11 @@ SELECT CURRENT_USER; disconnect user_a; connection master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; +--sorted_result +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; sync_slave_with_master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; +--sorted_result +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; connection master; CREATE OR REPLACE USER u1@localhost IDENTIFIED BY 'abcdefghijk2'; @@ -26,9 +28,11 @@ connection user_a; SELECT CURRENT_USER; disconnect user_a; connection master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; +--sorted_result +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; sync_slave_with_master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; +--sorted_result +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; connection master; --error ER_CANNOT_USER @@ -38,7 +42,8 @@ CREATE USER u1@localhost; DROP USER u3@localhost; sync_slave_with_master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; +--sorted_result +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; connection master; DROP USER IF EXISTS u1@localhost; @@ -46,6 +51,7 @@ DROP USER u2@localhost; DROP USER IF EXISTS u3@localhost; sync_slave_with_master; -SELECT user, password FROM mysql.user WHERE user LIKE 'u%' ORDER BY user; +--sorted_result +SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; --source include/rpl_end.inc -- cgit v1.2.1 From 7c40996cc866ba9c6cf781776312301baa81c452 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Wed, 17 Oct 2018 12:48:13 +0200 Subject: MDEV-12321 authentication plugin: SET PASSWORD support Support SET PASSWORD for authentication plugins. Authentication plugin API is extended with two optional methods: * hash_password() is used to compute a password hash (or digest) from the plain-text password. This digest will be stored in mysql.user table * preprocess_hash() is used to convert this digest into some memory representation that can be later used to authenticate a user. Build-in plugins convert the hash from hexadecimal or base64 to binary, to avoid doing it on every authentication attempt. Note a change in behavior: when loading privileges (on startup or on FLUSH PRIVILEGES) an account with an unknown plugin was loaded with a warning (e.g. "Plugin 'foo' is not loaded"). But such an account could not be used for authentication until the plugin is installed. Now an account like that will not be loaded at all (with a warning, still). Indeed, without plugin's preprocess_hash() method the server cannot know how to load an account. Thus, if a new authentication plugin is installed run-time, one might need FLUSH PRIVILEGES to activate all existing accounts that were using this new plugin. --- mysql-test/suite/rpl/include/rpl_mixed_dml.inc | 1 - mysql-test/suite/rpl/r/rpl_do_grant.result | 1 + mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result | 3 --- mysql-test/suite/rpl/t/rpl_do_grant.test | 1 + 4 files changed, 2 insertions(+), 4 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/include/rpl_mixed_dml.inc b/mysql-test/suite/rpl/include/rpl_mixed_dml.inc index 114cd53d244..bb1a2c173de 100644 --- a/mysql-test/suite/rpl/include/rpl_mixed_dml.inc +++ b/mysql-test/suite/rpl/include/rpl_mixed_dml.inc @@ -289,7 +289,6 @@ DROP TRIGGER tr1; --echo --echo --echo ******************** EVENTS ******************** -GRANT EVENT ON *.* TO 'root'@'localhost'; INSERT INTO t1 VALUES(1, 'test1'); CREATE EVENT e1 ON SCHEDULE EVERY '1' SECOND COMMENT 'e_second_comment' DO DELETE FROM t1; --source suite/rpl/include/rpl_mixed_check_event.inc diff --git a/mysql-test/suite/rpl/r/rpl_do_grant.result b/mysql-test/suite/rpl/r/rpl_do_grant.result index 9eca21b38e4..9f6328bce8e 100644 --- a/mysql-test/suite/rpl/r/rpl_do_grant.result +++ b/mysql-test/suite/rpl/r/rpl_do_grant.result @@ -328,4 +328,5 @@ Grantor root@localhost connection master; DROP USER user_bug27606@localhost; +update mysql.user set plugin=''; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result index 0bcc2dd186d..45742c989c4 100644 --- a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result +++ b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result @@ -676,7 +676,6 @@ DROP TRIGGER tr1; ******************** EVENTS ******************** -GRANT EVENT ON *.* TO 'root'@'localhost'; INSERT INTO t1 VALUES(1, 'test1'); CREATE EVENT e1 ON SCHEDULE EVERY '1' SECOND COMMENT 'e_second_comment' DO DELETE FROM t1; SHOW EVENTS; @@ -1098,8 +1097,6 @@ master-bin.000001 # Query # # use `test_rpl`; DELETE FROM t2 master-bin.000001 # Xid # # COMMIT /* XID */ master-bin.000001 # Gtid # # GTID #-#-# master-bin.000001 # Query # # use `test_rpl`; DROP TRIGGER tr1 -master-bin.000001 # Gtid # # GTID #-#-# -master-bin.000001 # Query # # use `test_rpl`; GRANT EVENT ON *.* TO 'root'@'localhost' master-bin.000001 # Gtid # # BEGIN GTID #-#-# master-bin.000001 # Query # # use `test_rpl`; INSERT INTO t1 VALUES(1, 'test1') master-bin.000001 # Xid # # COMMIT /* XID */ diff --git a/mysql-test/suite/rpl/t/rpl_do_grant.test b/mysql-test/suite/rpl/t/rpl_do_grant.test index 0024c7039e4..ba70eda6358 100644 --- a/mysql-test/suite/rpl/t/rpl_do_grant.test +++ b/mysql-test/suite/rpl/t/rpl_do_grant.test @@ -363,5 +363,6 @@ SELECT Grantor FROM mysql.tables_priv WHERE User='user_bug27606'; --connection master DROP USER user_bug27606@localhost; +update mysql.user set plugin=''; --source include/rpl_end.inc -- cgit v1.2.1 From dd6e74c62a2aa44d9d5e1790bcd36d3ff1c7d98b Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Wed, 31 Oct 2018 22:20:51 +0100 Subject: MDEV-16774 SET PASSWORD and ALTER USER with slightly different results set both `password` and `authentication_string` columns in `mysql`.`user` table for now. Suppress the "password was ignored" warning if the password is the same as the authentication string --- mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result index 24ce8899e2c..00b50df4a68 100644 --- a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result +++ b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result @@ -518,24 +518,24 @@ connection master; SET PASSWORD FOR 'user_test_rpl'@'localhost' = '*0000000000000000000000000000000000000000'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *0000000000000000000000000000000000000000 N +localhost user_test_rpl *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *0000000000000000000000000000000000000000 N +localhost user_test_rpl *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection master; ******************** RENAME USER ******************** RENAME USER 'user_test_rpl'@'localhost' TO 'user_test_rpl_2'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl_2 mysql_native_password *0000000000000000000000000000000000000000 N +localhost user_test_rpl_2 *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; host user password plugin authentication_string select_priv -localhost user_test_rpl_2 mysql_native_password *0000000000000000000000000000000000000000 N +localhost user_test_rpl_2 *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection master; ******************** DROP USER ******************** -- cgit v1.2.1 From 54b8856b87629e9fec075e3a71179eefc7fa02ac Mon Sep 17 00:00:00 2001 From: Igor Mazur Date: Sat, 11 Nov 2017 22:32:39 +0200 Subject: MDEV-14528 Track master timestamp in case rolling back to serial replication When replicated events are from Master unaware of MariaDB GTID their handling by the Parallel slave misses Seconds_Behind_Master updating. In the bug condition the Show-Slave-Status' field remains unchanged. Because in such case event execution is sequential the bug is fixed with deploying the same logics as in the explicit single-threaded mode with is to set Relay_log_event::last_master_timestamp member early at the end of event reading from the relay log. --- mysql-test/suite/rpl/r/rpl_old_master.result | 3 +++ mysql-test/suite/rpl/t/rpl_old_master.test | 8 ++++++++ 2 files changed, 11 insertions(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_old_master.result b/mysql-test/suite/rpl/r/rpl_old_master.result index dd3de4d327b..f985bee6832 100644 --- a/mysql-test/suite/rpl/r/rpl_old_master.result +++ b/mysql-test/suite/rpl/r/rpl_old_master.result @@ -9,7 +9,10 @@ connection slave; SET @old_parallel= @@GLOBAL.slave_parallel_threads; SET GLOBAL slave_parallel_threads=10; CHANGE MASTER TO master_host='127.0.0.1', master_port=SERVER_MYPORT_1, master_user='root', master_log_file='master-bin.000001', master_log_pos=4; +FLUSH TABLES WITH READ LOCK; include/start_slave.inc +include/wait_for_slave_param.inc [Seconds_Behind_Master] +UNLOCK TABLES; connection master; CREATE TABLE t2 (a INT PRIMARY KEY) ENGINE=InnoDB; INSERT INTO t2 VALUES (1); diff --git a/mysql-test/suite/rpl/t/rpl_old_master.test b/mysql-test/suite/rpl/t/rpl_old_master.test index 8f61d6979cd..6ddc227fc14 100644 --- a/mysql-test/suite/rpl/t/rpl_old_master.test +++ b/mysql-test/suite/rpl/t/rpl_old_master.test @@ -27,7 +27,15 @@ SET @old_parallel= @@GLOBAL.slave_parallel_threads; SET GLOBAL slave_parallel_threads=10; --replace_result $SERVER_MYPORT_1 SERVER_MYPORT_1 eval CHANGE MASTER TO master_host='127.0.0.1', master_port=$SERVER_MYPORT_1, master_user='root', master_log_file='master-bin.000001', master_log_pos=4; + +# Block execution yet when the blocked query timestamp has been already accounted +FLUSH TABLES WITH READ LOCK; --source include/start_slave.inc +--let $slave_param = Seconds_Behind_Master +--let $slave_param_value = 1 +--let $slave_param_comparison= >= +--source include/wait_for_slave_param.inc +UNLOCK TABLES; --connection master CREATE TABLE t2 (a INT PRIMARY KEY) ENGINE=InnoDB; -- cgit v1.2.1 From e82ebb8f06674a22d959b91415c084ed34fe994d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Wed, 7 Nov 2018 13:08:00 +0200 Subject: MDEV-14528: Disable a failing test --- mysql-test/suite/rpl/disabled.def | 1 + 1 file changed, 1 insertion(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/disabled.def b/mysql-test/suite/rpl/disabled.def index e37ad842790..3b740cbf974 100644 --- a/mysql-test/suite/rpl/disabled.def +++ b/mysql-test/suite/rpl/disabled.def @@ -17,3 +17,4 @@ rpl_row_binlog_max_cache_size : MDEV-11092 rpl_blackhole : MDEV-11094 rpl_row_mysqlbinlog : MDEV-11095 rpl_row_index_choice : MDEV-11666 +rpl_delayed_slave : MDEV-14528 -- cgit v1.2.1 From c565622c6c6f2cb5e1dbc034a934a91f9ff08fa4 Mon Sep 17 00:00:00 2001 From: Andrei Elkin Date: Wed, 7 Nov 2018 15:24:30 +0200 Subject: MDEV-14528 followup. There was a failure in rpl_delayed_slave after recent MDEV-14528 commit. The parallel applier should not set its Relay_log::last_master_timestamp from Format-descriptor log event. The latter may reflect a deep past so Seconds-behind-master will be computed through it and displayed all time while the first possibly "slow" group of events is executed. The main MDEV-14528 is refined, rpl_delayed_slave now passes also in the parallel mode. --- mysql-test/suite/rpl/disabled.def | 1 - 1 file changed, 1 deletion(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/disabled.def b/mysql-test/suite/rpl/disabled.def index 3b740cbf974..e37ad842790 100644 --- a/mysql-test/suite/rpl/disabled.def +++ b/mysql-test/suite/rpl/disabled.def @@ -17,4 +17,3 @@ rpl_row_binlog_max_cache_size : MDEV-11092 rpl_blackhole : MDEV-11094 rpl_row_mysqlbinlog : MDEV-11095 rpl_row_index_choice : MDEV-11666 -rpl_delayed_slave : MDEV-14528 -- cgit v1.2.1 From 07e4853c232726a639b30d4718bef9914ea42d24 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Wed, 7 Nov 2018 19:00:14 +0400 Subject: MDEV-17563 Different results using table or view when comparing values of time type MDEV-17625 Different warnings when comparing a garbage to DATETIME vs TIME - Splitting processes of data type conversion (to TIME/DATE,DATETIME) and warning generation. Warning are now only get collected during conversion (in an "int" variable), and are pushed in the very end of conversion (not in parallel). Warnings generated by the low level routines str_to_xxx() and number_to_xxx() can now be changed at the end, when TIME_FUZZY_DATES is applied, from "Invalid value" to "Truncated invalid value". Now "Illegal value" is issued only when the low level routine returned an error and TIME_FUZZY_DATES was not set. Otherwise, if the low level routine returned "false" (success), or if NULL was converted to a zero datetime by TIME_FUZZY_DATES, then "Truncated illegal value" is issued. This gives better warnings. - Methods Type_handler::Item_get_date() and Type_handler::Item_func_hybrid_field_type_get_date() now only convert and collect warning information, but do not push warnings. - Changing the return data type for Type_handler::Item_get_date() and Type_handler::Item_func_hybrid_field_type_get_date() from "bool" to "void". The conversion result (success vs error) can be checked by testing ltime->time_type. MYSQL_TIME_{NONE|ERROR} mean mean error, other values mean success. - Adding new wrapper methods Type_handler::Item_get_date_with_warn() and Type_handler::Item_func_hybrid_field_type_get_date_with_warn() to do conversion followed by raising warnings, and changing the code to call new Type_handler::***_with_warn() methods. - Adding a helper class Temporal::Status, a wrapper for MYSQL_TIME_STATUS with automatic initialization. - Adding a helper class Temporal::Warn, to collect warnings but without actually raising them. Moving a part of ErrConv into a separate class ErrBuff, and deriving both Temporal::Warn and ErrConv from ErrBuff. The ErrBuff part of Temporal::Warn is used to collect textual representation of the input data. - Adding a helper class Temporal::Warn_push. It's used to collect warning information during conversion, and automatically pushes warnings to the diagnostics area on its destructor time (in case of non-zero warning). - Moving more code from various functions inside class Temporal. - Adding more Temporal_hybrid constructors and protected Temporal methods make_from_xxx(), which convert and only collect warning information, but do not actually raise warnings. - Now the low level functions str_to_datetime() and str_to_time() always set status->warning if the return value is "true" (error). - Now the low level functions number_to_time() and number_to_datetime() set the "*was_cut" argument if the return value is "true" (error). - Adding a few DBUG_ASSERTs to make sure that str_to_xxx() and number_to_xxx() always set warnings on error. - Adding new warning flags MYSQL_TIME_WARN_EDOM and MYSQL_TIME_WARN_ZERO_DATE for the code symmetry. Before this change there was a special code path for (rc==true && was_cut==0) which was treated by Field_temporal::store_invalid_with_warning as "zero date violation". Now was_cut==0 always means that there are no any error/warnings/notes to be raised, not matter what rc is. - Using new Temporal_hybrid constructors in combination with Temporal::Warn_push inside str_to_datetime_with_warn(), double_to_datetime_with_warn(), int_to_datetime_with_warn(), Field::get_date(), Item::get_date_from_string(), and a few other places. - Removing methods Dec_ptr::to_datetime_with_warn(), Year::to_time_with_warn(), my_decimal::to_datetime_with_warn(), Dec_ptr::to_datetime_with_warn(). Fixing Sec6::to_time() and Sec6::to_datetime() to convert and only collect warnings, without raising warnings. Now warning raising functionality resides in Temporal::Warn_push. - Adding classes Longlong_hybrid_null and Double_null, to return both value and the "IS NULL" flag. Adding methods Item::to_double_null(), to_longlong_hybrid_null(), Item_func_hybrid_field_type::to_longlong_hybrid_null_op(), Item_func_hybrid_field_type::to_double_null_op(). Removing separate classes VInt and VInt_op, as they have been replaced by a single class Longlong_hybrid_null. - Adding a helper method Temporal::type_name_by_timestamp_type(), moving a part of make_truncated_value_warning() into it, and reusing in Temporal::Warn::push_conversion_warnings(). - Removing Item::make_zero_date() and Item_func_hybrid_field_type::make_zero_mysql_time(). They provided duplicate functionality. Now this code resides in Temporal::make_fuzzy_date(). The latter is now called for all Item types when data type conversion (to DATE/TIME/DATETIME) is involved, including Item_field and Item_direct_view_ref. This fixes MDEV-17563: Item_direct_view_ref now correctly converts NULL to a zero date when TIME_FUZZY_DATES says so. --- mysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result b/mysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result index 2f7f1b07cb4..936f604be2e 100644 --- a/mysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result +++ b/mysql-test/suite/rpl/r/rpl_switch_stm_row_mixed.result @@ -140,7 +140,7 @@ create table t4 select * from t1 where 3 in (select 1 union select 2 union selec SET STATEMENT sql_mode = 'NO_ENGINE_SUBSTITUTION' FOR create table t5 select * from t1 where 3 in (select 1 union select 2 union select curdate() union select 3); Warnings: -Warning 1292 Incorrect datetime value: '3' +Warning 1292 Truncated incorrect datetime value: '3' insert ignore into t5 select UUID() from t1 where 3 in (select 1 union select 2 union select 3 union select * from t4); create procedure foo() begin -- cgit v1.2.1 From 4447a02cf13a49876001a40ca7db8fdedb731fd5 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Fri, 23 Nov 2018 19:04:42 +0400 Subject: MDEV-16991 Rounding vs truncation for TIME, DATETIME, TIMESTAMP --- mysql-test/suite/rpl/r/rpl_temporal_round.result | 50 ++++++++++++++++++++++++ mysql-test/suite/rpl/t/rpl_temporal_round.test | 35 +++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 mysql-test/suite/rpl/r/rpl_temporal_round.result create mode 100644 mysql-test/suite/rpl/t/rpl_temporal_round.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_temporal_round.result b/mysql-test/suite/rpl/r/rpl_temporal_round.result new file mode 100644 index 00000000000..df8cc431a74 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_temporal_round.result @@ -0,0 +1,50 @@ +include/master-slave.inc +[connection master] +SET sql_mode=TIME_ROUND_FRACTIONAL; +SET time_zone='+00:00'; +SET timestamp=UNIX_TIMESTAMP('2010-12-31 23:59:59.999999'); +CREATE TABLE t1 (id SERIAL, a TIMESTAMP(4)); +INSERT INTO t1 (a) VALUES (now(6)); +INSERT INTO t1 (a) VALUES ('2011-01-01 23:59:59.999999'); +CREATE TABLE t2 (id SERIAL, a DATETIME(4)); +INSERT INTO t2 (a) VALUES (now(6)); +INSERT INTO t2 (a) VALUES ('2011-01-01 23:59:59.999999'); +CREATE TABLE t3 (id SERIAL, a TIME(4)); +INSERT INTO t3 (a) VALUES (now(6)); +Warnings: +Note 1265 Data truncated for column 'a' at row 1 +INSERT INTO t3 (a) VALUES ('2011-01-01 23:59:59.999999'); +Warnings: +Note 1265 Data truncated for column 'a' at row 1 +SELECT * FROM t1; +id a +1 2011-01-01 00:00:00.0000 +2 2011-01-02 00:00:00.0000 +SELECT * FROM t2; +id a +1 2011-01-01 00:00:00.0000 +2 2011-01-02 00:00:00.0000 +SELECT * FROM t3; +id a +1 24:00:00.0000 +2 24:00:00.0000 +connection slave; +connection slave; +SET time_zone='+00:00'; +SELECT * FROM t1; +id a +1 2011-01-01 00:00:00.0000 +2 2011-01-02 00:00:00.0000 +SELECT * FROM t2; +id a +1 2011-01-01 00:00:00.0000 +2 2011-01-02 00:00:00.0000 +SELECT * FROM t3; +id a +1 24:00:00.0000 +2 24:00:00.0000 +connection master; +DROP TABLE t1; +DROP TABLE t2; +DROP TABLE t3; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_temporal_round.test b/mysql-test/suite/rpl/t/rpl_temporal_round.test new file mode 100644 index 00000000000..c13c18bddb5 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_temporal_round.test @@ -0,0 +1,35 @@ +--source include/master-slave.inc + +SET sql_mode=TIME_ROUND_FRACTIONAL; +SET time_zone='+00:00'; +SET timestamp=UNIX_TIMESTAMP('2010-12-31 23:59:59.999999'); + +CREATE TABLE t1 (id SERIAL, a TIMESTAMP(4)); +INSERT INTO t1 (a) VALUES (now(6)); +INSERT INTO t1 (a) VALUES ('2011-01-01 23:59:59.999999'); + +CREATE TABLE t2 (id SERIAL, a DATETIME(4)); +INSERT INTO t2 (a) VALUES (now(6)); +INSERT INTO t2 (a) VALUES ('2011-01-01 23:59:59.999999'); + +CREATE TABLE t3 (id SERIAL, a TIME(4)); +INSERT INTO t3 (a) VALUES (now(6)); +INSERT INTO t3 (a) VALUES ('2011-01-01 23:59:59.999999'); + +SELECT * FROM t1; +SELECT * FROM t2; +SELECT * FROM t3; + +sync_slave_with_master; +connection slave; +SET time_zone='+00:00'; +SELECT * FROM t1; +SELECT * FROM t2; +SELECT * FROM t3; + +connection master; +DROP TABLE t1; +DROP TABLE t2; +DROP TABLE t3; + +--source include/rpl_end.inc -- cgit v1.2.1 From 269da4bf192d4fe4291eb3d6013e681af2ddcbef Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Mon, 3 Dec 2018 21:26:07 +0400 Subject: MDEV-5377 Row-based replication of MariaDB temporal data types with FSP>0 into a different column type --- .../rpl/r/rpl_mysql57_stm_temporal_round.result | 21 +++++++++ .../rpl/r/rpl_mysql80_stm_temporal_round.result | 22 +++++++++ .../rpl/t/rpl_mysql57_stm_temporal_round.test | 50 ++++++++++++++++++++ .../rpl/t/rpl_mysql80_stm_temporal_round.test | 54 ++++++++++++++++++++++ 4 files changed, 147 insertions(+) create mode 100644 mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result create mode 100644 mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result create mode 100644 mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test create mode 100644 mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result b/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result new file mode 100644 index 00000000000..cd2cbd5aa54 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result @@ -0,0 +1,21 @@ +# +# MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave +# +include/master-slave.inc +[connection master] +connection slave; +include/stop_slave.inc +connection master; +include/rpl_stop_server.inc [server_number=1] +include/rpl_start_server.inc [server_number=1] +connection slave; +CHANGE MASTER TO master_host='127.0.0.1', master_port=SERVER_MYPORT_1, master_user='root', master_log_file='master-bin.000001', master_log_pos=4; +include/start_slave.inc +connection master; +connection slave; +SELECT * FROM t1 ORDER BY id; +id a +1 2001-01-01 00:00:01.000 +include/stop_slave.inc +DROP TABLE t1; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result b/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result new file mode 100644 index 00000000000..c1408deb467 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result @@ -0,0 +1,22 @@ +# +# MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave +# +include/master-slave.inc +[connection master] +connection slave; +include/stop_slave.inc +connection master; +include/rpl_stop_server.inc [server_number=1] +include/rpl_start_server.inc [server_number=1] +connection slave; +CHANGE MASTER TO master_host='127.0.0.1', master_port=SERVER_MYPORT_1, master_user='root', master_log_file='master-bin.000001', master_log_pos=4; +include/start_slave.inc +connection master; +connection slave; +SELECT * FROM t1 ORDER BY id; +id a +1 2001-01-01 00:00:01.000 +2 2001-01-01 00:00:00.999 +include/stop_slave.inc +DROP TABLE t1; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test b/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test new file mode 100644 index 00000000000..e29d15fbf4f --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test @@ -0,0 +1,50 @@ +--echo # +--echo # MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave +--echo # + +--source include/have_innodb.inc +--source include/master-slave.inc + +--connection slave +--source include/stop_slave.inc + +--connection master +--let $datadir= `SELECT @@datadir` + +--let $rpl_server_number= 1 +--source include/rpl_stop_server.inc + +--remove_file $datadir/master-bin.000001 + +# +# Simulate MySQL 5.7.x master +# +# mysql-5.7.11-stm-temporal-round-binlog.000001 was recorded with +# "mysqld --log-bin --binlog-format=statement", with the following SQL script: +# +#CREATE TABLE t1 (id SERIAL, a DATETIME(3)); +#INSERT INTO t1 (a) VALUES ('2001-01-01 00:00:00.999999'); +# + +--copy_file $MYSQL_TEST_DIR/std_data/rpl/mysql-5.7.11-stm-temporal-round-binlog.000001 $datadir/master-bin.000001 + +--let $rpl_server_number= 1 +--source include/rpl_start_server.inc + +--source include/wait_until_connected_again.inc + +--connection slave +--replace_result $SERVER_MYPORT_1 SERVER_MYPORT_1 +eval CHANGE MASTER TO master_host='127.0.0.1', master_port=$SERVER_MYPORT_1, master_user='root', master_log_file='master-bin.000001', master_log_pos=4; + +--source include/start_slave.inc + +--connection master +--sync_slave_with_master +SELECT * FROM t1 ORDER BY id; + +--source include/stop_slave.inc +DROP TABLE t1; + +--let $rpl_only_running_threads= 1 +--source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test b/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test new file mode 100644 index 00000000000..a4d0734d225 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test @@ -0,0 +1,54 @@ +--echo # +--echo # MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave +--echo # + +--source include/have_innodb.inc +--source include/master-slave.inc + +--connection slave +--source include/stop_slave.inc + +--connection master +--let $datadir= `SELECT @@datadir` + +--let $rpl_server_number= 1 +--source include/rpl_stop_server.inc + +--remove_file $datadir/master-bin.000001 + +# +# Simulate MySQL 8.0.x master +# +# mysql-8.0.13-stm-temporal-round-binlog.000001 was recorded with +# "mysqld --log-bin --binlog-format=statement", with the following SQL script: +# +#SET NAMES utf8mb4 COLLATE utf8mb4_general_ci; +#SET sql_mode=''; +#CREATE TABLE t1 (id SERIAL, a DATETIME(3)); +#INSERT INTO t1 (a) VALUES ('2001-01-01 00:00:00.999999'); +#SET sql_mode=TIME_TRUNCATE_FRACTIONAL; +#INSERT INTO t1 (a) VALUES ('2001-01-01 00:00:00.999999'); +# + +--copy_file $MYSQL_TEST_DIR/std_data/rpl/mysql-8.0.13-stm-temporal-round-binlog.000001 $datadir/master-bin.000001 + +--let $rpl_server_number= 1 +--source include/rpl_start_server.inc + +--source include/wait_until_connected_again.inc + +--connection slave +--replace_result $SERVER_MYPORT_1 SERVER_MYPORT_1 +eval CHANGE MASTER TO master_host='127.0.0.1', master_port=$SERVER_MYPORT_1, master_user='root', master_log_file='master-bin.000001', master_log_pos=4; + +--source include/start_slave.inc + +--connection master +--sync_slave_with_master +SELECT * FROM t1 ORDER BY id; + +--source include/stop_slave.inc +DROP TABLE t1; + +--let $rpl_only_running_threads= 1 +--source include/rpl_end.inc -- cgit v1.2.1 From 1c37ac84ef102f4e45d68f1442832a29387c27ba Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Tue, 4 Dec 2018 18:11:45 +0400 Subject: MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave The previous patch 269da4bf192d4fe4291eb3d6013e681af2ddcbef was actually for MDEV-8894 (not for MDEV-5377). It was erroneously pushed with a wrong title. This patch is a small cleanup for MDEV-8894. CREATE TABLE is now not a part of binary logs recorded with MySQL, only INSERT statements are. This will allow to reuse the same binary logs in combinations with different CREATE TABLE statements, to tests different data types. --- .../suite/rpl/r/rpl_mysql57_stm_temporal_round.result | 1 + .../suite/rpl/r/rpl_mysql80_stm_temporal_round.result | 1 + .../suite/rpl/t/rpl_mysql57_stm_temporal_round.test | 14 +++++++++++--- .../suite/rpl/t/rpl_mysql80_stm_temporal_round.test | 16 ++++++++++++---- 4 files changed, 25 insertions(+), 7 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result b/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result index cd2cbd5aa54..bedd103c2a0 100644 --- a/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result +++ b/mysql-test/suite/rpl/r/rpl_mysql57_stm_temporal_round.result @@ -4,6 +4,7 @@ include/master-slave.inc [connection master] connection slave; +CREATE TABLE t1 (id SERIAL, a DATETIME(3)); include/stop_slave.inc connection master; include/rpl_stop_server.inc [server_number=1] diff --git a/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result b/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result index c1408deb467..23b3217895a 100644 --- a/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result +++ b/mysql-test/suite/rpl/r/rpl_mysql80_stm_temporal_round.result @@ -4,6 +4,7 @@ include/master-slave.inc [connection master] connection slave; +CREATE TABLE t1 (id SERIAL, a DATETIME(3)); include/stop_slave.inc connection master; include/rpl_stop_server.inc [server_number=1] diff --git a/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test b/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test index e29d15fbf4f..675b7db0603 100644 --- a/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test +++ b/mysql-test/suite/rpl/t/rpl_mysql57_stm_temporal_round.test @@ -1,3 +1,5 @@ +--source include/have_binlog_format_statement.inc + --echo # --echo # MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave --echo # @@ -6,6 +8,7 @@ --source include/master-slave.inc --connection slave +CREATE TABLE t1 (id SERIAL, a DATETIME(3)); --source include/stop_slave.inc --connection master @@ -19,10 +22,15 @@ # # Simulate MySQL 5.7.x master # -# mysql-5.7.11-stm-temporal-round-binlog.000001 was recorded with -# "mysqld --log-bin --binlog-format=statement", with the following SQL script: -# +# mysql-5.7.11-stm-temporal-round-binlog.000001 was recorded against a +# table with this structure: #CREATE TABLE t1 (id SERIAL, a DATETIME(3)); +# (note, the CREATE statement is not inside the binary log) +# +# using this command line: +# mysqld --log-bin --binlog-format=statement +# with the following single SQL statement: +# #INSERT INTO t1 (a) VALUES ('2001-01-01 00:00:00.999999'); # diff --git a/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test b/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test index a4d0734d225..ad6df9d9993 100644 --- a/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test +++ b/mysql-test/suite/rpl/t/rpl_mysql80_stm_temporal_round.test @@ -1,3 +1,5 @@ +--source include/have_binlog_format_statement.inc + --echo # --echo # MDEV-8894 Inserting fractional seconds into MySQL 5.6 master breaks consistency on MariaDB 10 slave --echo # @@ -6,6 +8,7 @@ --source include/master-slave.inc --connection slave +CREATE TABLE t1 (id SERIAL, a DATETIME(3)); --source include/stop_slave.inc --connection master @@ -19,12 +22,17 @@ # # Simulate MySQL 8.0.x master # -# mysql-8.0.13-stm-temporal-round-binlog.000001 was recorded with -# "mysqld --log-bin --binlog-format=statement", with the following SQL script: +# mysql-8.0.13-stm-temporal-round-binlog.000001 was recorded against a +# table with this structure: +#CREATE TABLE t1 (id SERIAL, a DATETIME(3)); +# (note, the CREATE statement is not inside the binary log) +# +# using this command line: +# mysqld --log-bin --binlog-format=statement --server-id=1 --character-set-server=latin1 +# with the following SQL script: # -#SET NAMES utf8mb4 COLLATE utf8mb4_general_ci; +#SET NAMES latin1 COLLATE latin1_swedish_ci; #SET sql_mode=''; -#CREATE TABLE t1 (id SERIAL, a DATETIME(3)); #INSERT INTO t1 (a) VALUES ('2001-01-01 00:00:00.999999'); #SET sql_mode=TIME_TRUNCATE_FRACTIONAL; #INSERT INTO t1 (a) VALUES ('2001-01-01 00:00:00.999999'); -- cgit v1.2.1 From 34f11b06e6aa5e8d4e648c04b5a4049179b66cfd Mon Sep 17 00:00:00 2001 From: Kristian Nielsen Date: Sun, 14 Oct 2018 20:41:49 +0200 Subject: Move deletion of old GTID rows to slave background thread This patch changes how old rows in mysql.gtid_slave_pos* tables are deleted. Instead of doing it as part of every replicated transaction in record_gtid(), it is done periodically (every @@gtid_cleanup_batch_size transaction) in the slave background thread. This removes the deletion step from the replication process in SQL or worker threads, which could speed up replication with many small transactions. It also decreases contention on the global mutex LOCK_slave_state. And it simplifies the logic, eg. when a replicated transaction fails after having deleted old rows. With this patch, the deletion of old GTID rows happens asynchroneously and slightly non-deterministic. Thus the number of old rows in mysql.gtid_slave_pos can temporarily exceed @@gtid_cleanup_batch_size. But all old rows will be deleted eventually after sufficiently many new GTIDs have been replicated. --- mysql-test/suite/rpl/r/rpl_gtid_mdev4484.result | 40 ++++++------- mysql-test/suite/rpl/r/rpl_gtid_stop_start.result | 8 +-- .../suite/rpl/r/rpl_parallel_optimistic.result | 14 ++++- mysql-test/suite/rpl/t/rpl_gtid_mdev4484.test | 68 +++++++++++++++++----- .../suite/rpl/t/rpl_parallel_optimistic.test | 42 ++++++------- 5 files changed, 110 insertions(+), 62 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_gtid_mdev4484.result b/mysql-test/suite/rpl/r/rpl_gtid_mdev4484.result index 00307a8c104..5dffdd9809c 100644 --- a/mysql-test/suite/rpl/r/rpl_gtid_mdev4484.result +++ b/mysql-test/suite/rpl/r/rpl_gtid_mdev4484.result @@ -16,36 +16,32 @@ INSERT INTO t1 VALUES (1); connection slave; connection slave; include/stop_slave.inc +SET @old_gtid_cleanup_batch_size= @@GLOBAL.gtid_cleanup_batch_size; +SET GLOBAL gtid_cleanup_batch_size= 2; SET @old_dbug= @@GLOBAL.debug_dbug; SET GLOBAL debug_dbug="+d,gtid_slave_pos_simulate_failed_delete"; SET sql_log_bin= 0; -CALL mtr.add_suppression("Can't find file"); +CALL mtr.add_suppression(" Error deleting old GTID row"); SET sql_log_bin= 1; include/start_slave.inc connection master; -INSERT INTO t1 VALUES (2); -connection slave; -include/wait_for_slave_sql_error.inc [errno=1942] -STOP SLAVE IO_THREAD; -SELECT domain_id, server_id, seq_no FROM mysql.gtid_slave_pos -ORDER BY domain_id, sub_id DESC LIMIT 1; -domain_id server_id seq_no -0 1 3 +connection slave; +SELECT COUNT(*), MAX(seq_no) INTO @pre_count, @pre_max_seq_no +FROM mysql.gtid_slave_pos; +SELECT IF(@pre_count >= 20, "OK", CONCAT("Error: too few rows seen while errors injected: ", @pre_count)); +IF(@pre_count >= 20, "OK", CONCAT("Error: too few rows seen while errors injected: ", @pre_count)) +OK SET GLOBAL debug_dbug= @old_dbug; -include/start_slave.inc connection master; -INSERT INTO t1 VALUES (3); -connection slave; -connection slave; -SELECT domain_id, server_id, seq_no FROM mysql.gtid_slave_pos -ORDER BY domain_id, sub_id DESC LIMIT 1; -domain_id server_id seq_no -0 1 4 -SELECT * FROM t1 ORDER BY i; -i -1 -2 -3 +connection slave; +connection slave; +SELECT IF(COUNT(*) >= 1, "OK", CONCAT("Error: too few rows seen after errors no longer injected: ", COUNT(*))) +FROM mysql.gtid_slave_pos +WHERE seq_no <= @pre_max_seq_no; +IF(COUNT(*) >= 1, "OK", CONCAT("Error: too few rows seen after errors no longer injected: ", COUNT(*))) +OK connection master; DROP TABLE t1; +connection slave; +SET GLOBAL gtid_cleanup_batch_size= @old_gtid_cleanup_batch_size; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_gtid_stop_start.result b/mysql-test/suite/rpl/r/rpl_gtid_stop_start.result index 1647b6c998c..50f24d56e9a 100644 --- a/mysql-test/suite/rpl/r/rpl_gtid_stop_start.result +++ b/mysql-test/suite/rpl/r/rpl_gtid_stop_start.result @@ -171,7 +171,7 @@ include/start_slave.inc *** MDEV-4692: mysql.gtid_slave_pos accumulates values for a domain *** SELECT domain_id, COUNT(*) FROM mysql.gtid_slave_pos GROUP BY domain_id; domain_id COUNT(*) -0 2 +0 3 1 2 connection server_1; INSERT INTO t1 VALUES (11); @@ -179,7 +179,7 @@ connection server_2; FLUSH NO_WRITE_TO_BINLOG TABLES; SELECT domain_id, COUNT(*) FROM mysql.gtid_slave_pos GROUP BY domain_id; domain_id COUNT(*) -0 2 +0 4 1 2 include/start_slave.inc connection server_1; @@ -189,8 +189,8 @@ connection server_2; FLUSH NO_WRITE_TO_BINLOG TABLES; SELECT domain_id, COUNT(*) FROM mysql.gtid_slave_pos GROUP BY domain_id; domain_id COUNT(*) -0 2 -1 2 +0 3 +1 1 *** MDEV-4650: show variables; ERROR 1946 (HY000): Failed to load replication slave GTID position *** connection server_2; SET sql_log_bin=0; diff --git a/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result b/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result index ca202a66b0e..83343e52cab 100644 --- a/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result +++ b/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result @@ -12,6 +12,8 @@ SET GLOBAL slave_parallel_threads=10; CHANGE MASTER TO master_use_gtid=slave_pos; SET @old_parallel_mode=@@GLOBAL.slave_parallel_mode; SET GLOBAL slave_parallel_mode='optimistic'; +SET @old_gtid_cleanup_batch_size= @@GLOBAL.gtid_cleanup_batch_size; +SET GLOBAL gtid_cleanup_batch_size= 1000000; connection server_1; INSERT INTO t1 VALUES(1,1); BEGIN; @@ -131,6 +133,11 @@ c 204 205 206 +SELECT IF(COUNT(*) >= 30, "OK", CONCAT("Error: too few old rows found: ", COUNT(*))) +FROM mysql.gtid_slave_pos; +IF(COUNT(*) >= 30, "OK", CONCAT("Error: too few old rows found: ", COUNT(*))) +OK +SET GLOBAL gtid_cleanup_batch_size=1; *** Test @@skip_parallel_replication. *** connection server_2; include/stop_slave.inc @@ -651,9 +658,10 @@ DROP TABLE t1, t2, t3; include/save_master_gtid.inc connection server_2; include/sync_with_master_gtid.inc -Check that no more than the expected last four GTIDs are in mysql.gtid_slave_pos -select count(4) <= 4 from mysql.gtid_slave_pos order by domain_id, sub_id; -count(4) <= 4 +SELECT COUNT(*) <= 5*@@GLOBAL.gtid_cleanup_batch_size +FROM mysql.gtid_slave_pos; +COUNT(*) <= 5*@@GLOBAL.gtid_cleanup_batch_size 1 +SET GLOBAL gtid_cleanup_batch_size= @old_gtid_cleanup_batch_size; connection server_1; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_gtid_mdev4484.test b/mysql-test/suite/rpl/t/rpl_gtid_mdev4484.test index 1e5d1abbb3b..5c17653da8a 100644 --- a/mysql-test/suite/rpl/t/rpl_gtid_mdev4484.test +++ b/mysql-test/suite/rpl/t/rpl_gtid_mdev4484.test @@ -28,37 +28,79 @@ INSERT INTO t1 VALUES (1); # Inject an artificial error deleting entries, and check that the error handling code works. --connection slave --source include/stop_slave.inc +SET @old_gtid_cleanup_batch_size= @@GLOBAL.gtid_cleanup_batch_size; +SET GLOBAL gtid_cleanup_batch_size= 2; SET @old_dbug= @@GLOBAL.debug_dbug; SET GLOBAL debug_dbug="+d,gtid_slave_pos_simulate_failed_delete"; SET sql_log_bin= 0; -CALL mtr.add_suppression("Can't find file"); +CALL mtr.add_suppression(" Error deleting old GTID row"); SET sql_log_bin= 1; --source include/start_slave.inc --connection master -INSERT INTO t1 VALUES (2); +--disable_query_log +let $i = 20; +while ($i) { + eval INSERT INTO t1 VALUES ($i+10); + dec $i; +} +--enable_query_log +--save_master_pos --connection slave ---let $slave_sql_errno= 1942 ---source include/wait_for_slave_sql_error.inc -STOP SLAVE IO_THREAD; -SELECT domain_id, server_id, seq_no FROM mysql.gtid_slave_pos - ORDER BY domain_id, sub_id DESC LIMIT 1; +--sync_with_master + +# Now wait for the slave background thread to try to delete old rows and +# hit the error injection. +--let _TEST_MYSQLD_ERROR_LOG=$MYSQLTEST_VARDIR/log/mysqld.2.err +--perl + open F, '<', $ENV{'_TEST_MYSQLD_ERROR_LOG'} or die; + outer: while (1) { + inner: while () { + last outer if / Error deleting old GTID row/; + } + # Easy way to do sub-second sleep without extra modules. + select(undef, undef, undef, 0.1); + } +EOF + +# Since we injected error in the cleanup code, the rows should remain in +# mysql.gtid_slave_pos. Check that we have at least 20 (more robust against +# non-deterministic cleanup and future changes than checking for exact number). +SELECT COUNT(*), MAX(seq_no) INTO @pre_count, @pre_max_seq_no + FROM mysql.gtid_slave_pos; +SELECT IF(@pre_count >= 20, "OK", CONCAT("Error: too few rows seen while errors injected: ", @pre_count)); SET GLOBAL debug_dbug= @old_dbug; ---source include/start_slave.inc --connection master -INSERT INTO t1 VALUES (3); +--disable_query_log +let $i = 20; +while ($i) { + eval INSERT INTO t1 VALUES ($i+40); + dec $i; +} +--enable_query_log --sync_slave_with_master --connection slave -SELECT domain_id, server_id, seq_no FROM mysql.gtid_slave_pos - ORDER BY domain_id, sub_id DESC LIMIT 1; -SELECT * FROM t1 ORDER BY i; - +# Now check that 1) rows are being deleted again after removing error +# injection, and 2) old rows are left that failed their delete while errors +# where injected (again compensating for non-deterministic deletion). +# Deletion is async and slightly non-deterministic, so we wait for at +# least 10 of the 20 new rows to be deleted. +let $wait_condition= + SELECT COUNT(*) <= 20-10 + FROM mysql.gtid_slave_pos + WHERE seq_no > @pre_max_seq_no; +--source include/wait_condition.inc +SELECT IF(COUNT(*) >= 1, "OK", CONCAT("Error: too few rows seen after errors no longer injected: ", COUNT(*))) + FROM mysql.gtid_slave_pos + WHERE seq_no <= @pre_max_seq_no; # Clean up --connection master DROP TABLE t1; +--connection slave +SET GLOBAL gtid_cleanup_batch_size= @old_gtid_cleanup_batch_size; --source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test b/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test index e08472d5f51..0060cf4416c 100644 --- a/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test +++ b/mysql-test/suite/rpl/t/rpl_parallel_optimistic.test @@ -21,6 +21,10 @@ SET GLOBAL slave_parallel_threads=10; CHANGE MASTER TO master_use_gtid=slave_pos; SET @old_parallel_mode=@@GLOBAL.slave_parallel_mode; SET GLOBAL slave_parallel_mode='optimistic'; +# Run the first part of the test with high batch size and see that +# old rows remain in the table. +SET @old_gtid_cleanup_batch_size= @@GLOBAL.gtid_cleanup_batch_size; +SET GLOBAL gtid_cleanup_batch_size= 1000000; --connection server_1 @@ -108,7 +112,12 @@ SELECT * FROM t3 ORDER BY c; SELECT * FROM t1 ORDER BY a; SELECT * FROM t2 ORDER BY a; SELECT * FROM t3 ORDER BY c; -#SHOW STATUS LIKE 'Slave_retried_transactions'; +# Check that we have a bunch of old rows left-over - they were not deleted +# due to high @@gtid_cleanup_batch_size. Then set a low +# @@gtid_cleanup_batch_size so we can test that rows start being deleted. +SELECT IF(COUNT(*) >= 30, "OK", CONCAT("Error: too few old rows found: ", COUNT(*))) + FROM mysql.gtid_slave_pos; +SET GLOBAL gtid_cleanup_batch_size=1; --echo *** Test @@skip_parallel_replication. *** @@ -557,25 +566,18 @@ DROP TABLE t1, t2, t3; --connection server_2 --source include/sync_with_master_gtid.inc -# Check for left-over rows in table mysql.gtid_slave_pos (MDEV-12147). -# -# There was a bug when a transaction got a conflict and was rolled back. It -# might have also handled deletion of some old rows, and these deletions would -# then also be rolled back. And since the deletes were never re-tried, old no -# longer needed rows would accumulate in the table without limit. -# -# The earlier part of this test file have plenty of transactions being rolled -# back. But the last DROP TABLE statement runs on its own and should never -# conflict, thus at this point the mysql.gtid_slave_pos table should be clean. -# -# To support @@gtid_pos_auto_engines, when a row is inserted in the table, it -# is associated with the engine of the table at insertion time, and it will -# only be deleted during record_gtid from a table of the same engine. Since we -# alter the table from MyISAM to InnoDB at the start of this test, we should -# end up with 4 rows: two left-over from when the table was MyISAM, and two -# left-over from the InnoDB part. ---echo Check that no more than the expected last four GTIDs are in mysql.gtid_slave_pos -select count(4) <= 4 from mysql.gtid_slave_pos order by domain_id, sub_id; +# Check that old rows are deleted from mysql.gtid_slave_pos. +# Deletion is asynchronous, so use wait_condition.inc. +# Also, there is a small amount of non-determinism in the deletion of old +# rows, so it is not guaranteed that there can never be more than +# @@gtid_cleanup_batch_size rows in the table; so allow a bit of slack +# here. +let $wait_condition= + SELECT COUNT(*) <= 5*@@GLOBAL.gtid_cleanup_batch_size + FROM mysql.gtid_slave_pos; +--source include/wait_condition.inc +eval $wait_condition; +SET GLOBAL gtid_cleanup_batch_size= @old_gtid_cleanup_batch_size; --connection server_1 --source include/rpl_end.inc -- cgit v1.2.1 From a02cac47f6a4ffce03e1e24ec7a00aa949819cce Mon Sep 17 00:00:00 2001 From: Kristian Nielsen Date: Fri, 7 Dec 2018 17:20:31 +0100 Subject: Fix an occational test failure in rpl.rpl_gtid_crash --- mysql-test/suite/rpl/t/rpl_gtid_crash.test | 1 + 1 file changed, 1 insertion(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/t/rpl_gtid_crash.test b/mysql-test/suite/rpl/t/rpl_gtid_crash.test index 5cf28b6e49a..8255500a590 100644 --- a/mysql-test/suite/rpl/t/rpl_gtid_crash.test +++ b/mysql-test/suite/rpl/t/rpl_gtid_crash.test @@ -186,6 +186,7 @@ EOF wait EOF START SLAVE; +--error 0,2006,2013 SET GLOBAL debug_dbug="+d,crash_commit_after"; --connection server_1 -- cgit v1.2.1 From 705fd4e94304215454ef7c3585e9018b69690cab Mon Sep 17 00:00:00 2001 From: Kristian Nielsen Date: Sat, 8 Dec 2018 22:53:47 +0100 Subject: Fix another random failure in rpl.rpl_gtid_crash --- mysql-test/suite/rpl/t/rpl_gtid_crash.test | 1 + 1 file changed, 1 insertion(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/t/rpl_gtid_crash.test b/mysql-test/suite/rpl/t/rpl_gtid_crash.test index 8255500a590..3c5542f4b2f 100644 --- a/mysql-test/suite/rpl/t/rpl_gtid_crash.test +++ b/mysql-test/suite/rpl/t/rpl_gtid_crash.test @@ -162,6 +162,7 @@ EOF wait EOF START SLAVE; +--error 0,2006,2013 SET GLOBAL debug_dbug="+d,crash_commit_before"; --connection server_1 -- cgit v1.2.1 From 93c360e3a53dbfe843bc4b769e73cbe9248cd5b3 Mon Sep 17 00:00:00 2001 From: Varun Gupta Date: Thu, 31 May 2018 15:51:59 +0530 Subject: MDEV-15253: Default optimizer setting changes for MariaDB 10.4 use_stat_tables= PREFERABLY optimizer_use_condition_selectivity= 4 --- mysql-test/suite/rpl/disabled.def | 1 + mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result | 1 + mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result | 1 + mysql-test/suite/rpl/r/rpl_parallel.result | 1 + mysql-test/suite/rpl/r/rpl_parallel_optimistic.result | 2 ++ mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result | 1 + mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result | 1 + 7 files changed, 8 insertions(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/disabled.def b/mysql-test/suite/rpl/disabled.def index d4617398c64..9f43bc3c339 100644 --- a/mysql-test/suite/rpl/disabled.def +++ b/mysql-test/suite/rpl/disabled.def @@ -19,3 +19,4 @@ rpl_row_mysqlbinlog : MDEV-11095 rpl_row_index_choice : MDEV-11666 rpl_parallel2 : fails after MDEV-16172 rpl_semi_sync_after_sync : fails after MDEV-16172 +rpl_auto_increment_update_failure : disabled for now diff --git a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result index 45742c989c4..0fbfb7d8f8c 100644 --- a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result +++ b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result @@ -552,6 +552,7 @@ INSERT INTO t1 VALUES(100, 'test'); ******************** ANALYZE ******************** ANALYZE TABLE t1; Table Op Msg_type Msg_text +test_rpl.t1 analyze status Engine-independent statistics collected test_rpl.t1 analyze status OK ******************** CHECK TABLE ******************** diff --git a/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result b/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result index f900a8b0e9a..e768c5c6f7c 100644 --- a/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result +++ b/mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result @@ -30,6 +30,7 @@ test.tt_2 preload_keys note The storage engine for the table doesn't support pre INSERT INTO tt_1(ddl_case) VALUES (39); ANALYZE TABLE nt_1; Table Op Msg_type Msg_text +test.nt_1 analyze status Engine-independent statistics collected test.nt_1 analyze status Table is already up to date INSERT INTO tt_1(ddl_case) VALUES (38); CHECK TABLE nt_1; diff --git a/mysql-test/suite/rpl/r/rpl_parallel.result b/mysql-test/suite/rpl/r/rpl_parallel.result index d994e4fdef6..9258deadaca 100644 --- a/mysql-test/suite/rpl/r/rpl_parallel.result +++ b/mysql-test/suite/rpl/r/rpl_parallel.result @@ -1517,6 +1517,7 @@ SET SESSION debug_dbug="+d,binlog_force_commit_id"; SET @commit_id= 10000; ANALYZE TABLE t2; Table Op Msg_type Msg_text +test.t2 analyze status Engine-independent statistics collected test.t2 analyze status OK INSERT INTO t3 VALUES (120, 0); SET @commit_id= 10001; diff --git a/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result b/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result index 83343e52cab..bf7a8192f56 100644 --- a/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result +++ b/mysql-test/suite/rpl/r/rpl_parallel_optimistic.result @@ -365,6 +365,7 @@ connection server_1; ALTER TABLE t2 COMMENT "123abc"; ANALYZE TABLE t2; Table Op Msg_type Msg_text +test.t2 analyze status Engine-independent statistics collected test.t2 analyze status OK INSERT INTO t1 VALUES (1,2); INSERT INTO t1 VALUES (2,2); @@ -485,6 +486,7 @@ SET @old_server_id= @@SESSION.server_id; SET SESSION server_id= 100; ANALYZE TABLE t2; Table Op Msg_type Msg_text +test.t2 analyze status Engine-independent statistics collected test.t2 analyze status OK SET SESSION server_id= @old_server_id; INSERT INTO t1 VALUES (37,0); diff --git a/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result b/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result index ef393873b97..a2f3bb44ae1 100644 --- a/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result +++ b/mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result @@ -30,6 +30,7 @@ test.tt_2 preload_keys note The storage engine for the table doesn't support pre INSERT INTO tt_1(ddl_case) VALUES (39); ANALYZE TABLE nt_1; Table Op Msg_type Msg_text +test.nt_1 analyze status Engine-independent statistics collected test.nt_1 analyze status Table is already up to date INSERT INTO tt_1(ddl_case) VALUES (38); CHECK TABLE nt_1; diff --git a/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result b/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result index f900a8b0e9a..e768c5c6f7c 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result +++ b/mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result @@ -30,6 +30,7 @@ test.tt_2 preload_keys note The storage engine for the table doesn't support pre INSERT INTO tt_1(ddl_case) VALUES (39); ANALYZE TABLE nt_1; Table Op Msg_type Msg_text +test.nt_1 analyze status Engine-independent statistics collected test.nt_1 analyze status Table is already up to date INSERT INTO tt_1(ddl_case) VALUES (38); CHECK TABLE nt_1; -- cgit v1.2.1 From 7fb9d64989ad8bb86ee47ded88dc5e2493aca4b8 Mon Sep 17 00:00:00 2001 From: Monty Date: Wed, 31 Oct 2018 22:52:29 +0200 Subject: Changed FLUSH TABLES to not change share version Part of MDEV-5336 Implement LOCK FOR BACKUP Originally both table metadata lock and global read lock protection were acquired before getting TABLE from table cache. This will be reordered in a future commit with MDL_BACKUP_XXX locks so that we first take table metadata lock, then get TABLE from table cache, then acquire analogue of global read lock. This patch both simplifies FLUSH TABLES code, makes FLUSH TABLES to lock less and also enables FLUSH TABLES code to be used with backup locks. The usage of FLUSH TABLES changes slightly: - FLUSH TABLES without any arguments will now only close not used tables and tables locked by the FLUSH TABLES connection. All not used table shares will be closed. Tables locked by the FLUSH TABLES connection will be reopened and re-locked after all others has stoped using the table (as before). If there was no locked tables, then FLUSH TABLES is instant and will not cause any waits. FLUSH TABLES will not wait for any in use table. - FLUSH TABLES with a table list, will ensure that the tables are closed before statement returns. The code is now only using MDL locks and not table share versions, which simplices the code greatly. One visible change is that the server will wait for the end of the transaction that are using the tables. Before FLUSH TABLES only waited for the statements to end. Signed-off-by: Monty --- mysql-test/suite/rpl/include/rpl_EE_err.test | 2 +- mysql-test/suite/rpl/include/rpl_row_annotate.test | 2 +- mysql-test/suite/rpl/include/rpl_row_delayed_ins.test | 2 +- mysql-test/suite/rpl/r/rpl_EE_err.result | 2 +- mysql-test/suite/rpl/r/rpl_row_annotate_do.result | 2 +- mysql-test/suite/rpl/r/rpl_row_annotate_dont.result | 2 +- mysql-test/suite/rpl/r/rpl_row_delayed_ins.result | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/include/rpl_EE_err.test b/mysql-test/suite/rpl/include/rpl_EE_err.test index 0b3fec1f605..fa135d12436 100644 --- a/mysql-test/suite/rpl/include/rpl_EE_err.test +++ b/mysql-test/suite/rpl/include/rpl_EE_err.test @@ -15,7 +15,7 @@ -- source include/master-slave.inc eval create table t1 (a int) engine=$engine_type; -flush tables; +flush tables t1; let $MYSQLD_DATADIR= `select @@datadir`; remove_file $MYSQLD_DATADIR/test/t1.MYI ; drop table if exists t1; diff --git a/mysql-test/suite/rpl/include/rpl_row_annotate.test b/mysql-test/suite/rpl/include/rpl_row_annotate.test index 317a9c86539..8b4b704cef9 100644 --- a/mysql-test/suite/rpl/include/rpl_row_annotate.test +++ b/mysql-test/suite/rpl/include/rpl_row_annotate.test @@ -147,7 +147,7 @@ let $start_pos= `select @binlog_start_pos`; connection master; SET SESSION binlog_annotate_row_events = ON; INSERT DELAYED INTO test1.t4 VALUES (1,1); -FLUSH TABLES; +FLUSH TABLES test1.t4; SELECT * FROM test1.t4 ORDER BY a; sync_slave_with_master; diff --git a/mysql-test/suite/rpl/include/rpl_row_delayed_ins.test b/mysql-test/suite/rpl/include/rpl_row_delayed_ins.test index bad308ff814..03c7b5282a8 100644 --- a/mysql-test/suite/rpl/include/rpl_row_delayed_ins.test +++ b/mysql-test/suite/rpl/include/rpl_row_delayed_ins.test @@ -10,7 +10,7 @@ eval create table t1(a int not null primary key) engine=$engine_type; insert delayed into t1 values (1); insert delayed into t1 values (2); insert delayed into t1 values (3); -flush tables; +flush tables t1; SELECT * FROM t1 ORDER BY a; sync_slave_with_master; diff --git a/mysql-test/suite/rpl/r/rpl_EE_err.result b/mysql-test/suite/rpl/r/rpl_EE_err.result index 1f605935005..0b0ee84229f 100644 --- a/mysql-test/suite/rpl/r/rpl_EE_err.result +++ b/mysql-test/suite/rpl/r/rpl_EE_err.result @@ -1,7 +1,7 @@ include/master-slave.inc [connection master] create table t1 (a int) engine=myisam; -flush tables; +flush tables t1; drop table if exists t1; Warnings: Warning 1017 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") diff --git a/mysql-test/suite/rpl/r/rpl_row_annotate_do.result b/mysql-test/suite/rpl/r/rpl_row_annotate_do.result index 52f7b180fae..ba1922566bf 100644 --- a/mysql-test/suite/rpl/r/rpl_row_annotate_do.result +++ b/mysql-test/suite/rpl/r/rpl_row_annotate_do.result @@ -180,7 +180,7 @@ slave-bin.000001 # Rotate 2 # slave-bin.000002;pos=4 connection master; SET SESSION binlog_annotate_row_events = ON; INSERT DELAYED INTO test1.t4 VALUES (1,1); -FLUSH TABLES; +FLUSH TABLES test1.t4; SELECT * FROM test1.t4 ORDER BY a; a b 1 1 diff --git a/mysql-test/suite/rpl/r/rpl_row_annotate_dont.result b/mysql-test/suite/rpl/r/rpl_row_annotate_dont.result index c657cf2fbb5..65535d5d417 100644 --- a/mysql-test/suite/rpl/r/rpl_row_annotate_dont.result +++ b/mysql-test/suite/rpl/r/rpl_row_annotate_dont.result @@ -160,7 +160,7 @@ slave-bin.000001 # Rotate 2 # slave-bin.000002;pos=4 connection master; SET SESSION binlog_annotate_row_events = ON; INSERT DELAYED INTO test1.t4 VALUES (1,1); -FLUSH TABLES; +FLUSH TABLES test1.t4; SELECT * FROM test1.t4 ORDER BY a; a b 1 1 diff --git a/mysql-test/suite/rpl/r/rpl_row_delayed_ins.result b/mysql-test/suite/rpl/r/rpl_row_delayed_ins.result index 978c3d30dbd..4d439c202f5 100644 --- a/mysql-test/suite/rpl/r/rpl_row_delayed_ins.result +++ b/mysql-test/suite/rpl/r/rpl_row_delayed_ins.result @@ -5,7 +5,7 @@ create table t1(a int not null primary key) engine=myisam; insert delayed into t1 values (1); insert delayed into t1 values (2); insert delayed into t1 values (3); -flush tables; +flush tables t1; SELECT * FROM t1 ORDER BY a; a 1 -- cgit v1.2.1 From 8cf7e3459d7309ce122824146260c4aecfa6ca77 Mon Sep 17 00:00:00 2001 From: Sergey Vojtovich Date: Thu, 6 Dec 2018 19:23:24 +0400 Subject: Moved early check for table existance to mysql_execute_command() MDEV-17772 - 3 way lock : ALTER, MDL, BACKUP STAGE BLOCK_DDL While waiting for a (potentially long) RO transaction or SELECT, DDL and LOCK TABLES ... WRITE hold protection against FTWRL and BACKUP STAGE. This effectively makes FTWRL/BACKUP STAGE indirectly wait for this RO transaction or SELECT to finish. Which is not great, as otherwise we could do something useful meanwhile. With this patch BACKUP lock is attempted to be acquired after TABLE/SCHEMA locks. If this attempt fails, TABLE/SCHEMA locks gets released and we start waiting for BACKUP lock. When wait finishes, BACKUP lock is released (to avoid deadlocks) and we attempt to acquire all locks once again. Other changes: - Take MDL lock before testing if table exists as part of CREATE TABLE ... IF EXISTS. This change was an effect of changes in lock_table_name and removes an inconsistency where one could get different error messages from CREATE TABLE .. IF EXISTS depending on active mdl locks. One effect of this change is that we don't binary log CREATE TABLE IF EXISTS if the table exists. This was done because old code was sometimes behaving inconsistenly (it was logged some time and not other times) and sending the query to the slave could make the slave even more inconsistent as there is not guarantee that the new table will have the same definition as the old table on the master. --- mysql-test/suite/rpl/r/rpl_create_if_not_exists.result | 2 -- 1 file changed, 2 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_create_if_not_exists.result b/mysql-test/suite/rpl/r/rpl_create_if_not_exists.result index d74fd07189c..b31eacfc236 100644 --- a/mysql-test/suite/rpl/r/rpl_create_if_not_exists.result +++ b/mysql-test/suite/rpl/r/rpl_create_if_not_exists.result @@ -25,8 +25,6 @@ connection slave; connection slave; SHOW TABLES in mysqltest; Tables_in_mysqltest -t -t1 SHOW EVENTS in mysqltest; Db Name Definer Time zone Type Execute at Interval value Interval field Starts Ends Status Originator character_set_client collation_connection Database Collation mysqltest e root@localhost SYSTEM ONE TIME # NULL NULL NULL NULL SLAVESIDE_DISABLED 1 latin1 latin1_swedish_ci latin1_swedish_ci -- cgit v1.2.1 From a76aadf7bc54e750e2474a080777e346ddbffc0d Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Thu, 22 Nov 2018 16:16:53 +0100 Subject: MDEV-17658 change the structure of mysql.user table Introduce User_table_tabular(mysql.user) and User_table_json(mysql.global_priv). The latter is not implemented. Automatic fallback to the old implementation works. Results change because privilege tables are opened in a different order now. --- .../suite/rpl/r/rpl_tmp_table_and_DDL.result | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_tmp_table_and_DDL.result b/mysql-test/suite/rpl/r/rpl_tmp_table_and_DDL.result index e8e95ab7c4c..45070949f79 100644 --- a/mysql-test/suite/rpl/r/rpl_tmp_table_and_DDL.result +++ b/mysql-test/suite/rpl/r/rpl_tmp_table_and_DDL.result @@ -145,43 +145,43 @@ UNLOCK TABLE; DROP DATABASE mysqltest2; LOCK TABLE t1 WRITE; CREATE USER test_1@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'db' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("CREATE USER test_1@localhost with table locked"); UNLOCK TABLE; CREATE USER test_2@localhost; LOCK TABLE t1 WRITE; GRANT SELECT ON t1 TO test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'tables_priv' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("GRANT select on table to user with table locked"); GRANT ALL ON f2 TO test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'tables_priv' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("GRANT ALL ON f2 TO test_2 with table locked"); GRANT ALL ON p2 TO test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'tables_priv' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("GRANT ALL ON p2 TO test_2 with table locked"); GRANT USAGE ON *.* TO test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'db' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("GRANT USAGE ON *.* TO test_2 with table locked"); REVOKE ALL PRIVILEGES ON f2 FROM test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'tables_priv' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("REVOKE ALL PRIVILEGES on function to user with table locked"); REVOKE ALL PRIVILEGES ON p2 FROM test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'tables_priv' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("REVOKE ALL PRIVILEGES on procedure to user with table locked"); REVOKE ALL PRIVILEGES ON t1 FROM test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'tables_priv' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("REVOKE ALL PRIVILEGES on table to user with table locked"); REVOKE USAGE ON *.* FROM test_2@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'db' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("REVOKE USAGE ON *.* TO test_2 with table locked"); RENAME USER test_2@localhost TO test_3@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'db' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("RENAME USER test_2 TO test_3 with table locked"); UNLOCK TABLE; RENAME USER test_2@localhost TO test_3@localhost; LOCK TABLE t1 WRITE; DROP USER test_3@localhost; -ERROR HY000: Table 'user' was not locked with LOCK TABLES +ERROR HY000: Table 'db' was not locked with LOCK TABLES INSERT INTO t2 VALUES ("DROP USER test_3@localhost with table locked"); UNLOCK TABLE; CREATE DATABASE db; -- cgit v1.2.1 From 4abb8216a054e14afbeb81e8529e02bab6fa14ac Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sat, 24 Nov 2018 14:13:41 +0100 Subject: MDEV-17658 change the structure of mysql.user table Implement User_table_json. Fix scripts to use mysql.global_priv. Fix tests. --- mysql-test/suite/rpl/include/rpl_row_001.test | 96 ---------------------- mysql-test/suite/rpl/r/rpl_create_drop_user.result | 22 ++--- mysql-test/suite/rpl/r/rpl_ddl.result | 12 +-- mysql-test/suite/rpl/r/rpl_do_grant.result | 24 ++---- mysql-test/suite/rpl/r/rpl_grant.result | 8 +- mysql-test/suite/rpl/r/rpl_ignore_revoke.result | 10 +-- mysql-test/suite/rpl/r/rpl_ignore_table.result | 9 +- mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result | 44 +++++----- mysql-test/suite/rpl/r/rpl_row_001.result | 42 +--------- mysql-test/suite/rpl/r/rpl_stm_000001.result | 33 +------- mysql-test/suite/rpl/t/rpl_do_grant.test | 30 ++----- mysql-test/suite/rpl/t/rpl_ignore_table.test | 4 +- mysql-test/suite/rpl/t/rpl_row_001.test | 48 ++++++++++- mysql-test/suite/rpl/t/rpl_stm_000001.test | 21 +---- 14 files changed, 115 insertions(+), 288 deletions(-) delete mode 100644 mysql-test/suite/rpl/include/rpl_row_001.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/include/rpl_row_001.test b/mysql-test/suite/rpl/include/rpl_row_001.test deleted file mode 100644 index 4df2d793244..00000000000 --- a/mysql-test/suite/rpl/include/rpl_row_001.test +++ /dev/null @@ -1,96 +0,0 @@ -let $LOAD_FILE= $MYSQLTEST_VARDIR/std_data/words.dat; -CREATE TABLE t1 (word CHAR(20) NOT NULL); ---replace_result $LOAD_FILE LOAD_FILE -eval LOAD DATA INFILE '$LOAD_FILE' INTO TABLE t1; ---replace_result $LOAD_FILE LOAD_FILE -eval LOAD DATA INFILE '$LOAD_FILE' INTO TABLE t1; -SELECT * FROM t1 ORDER BY word LIMIT 10; - -# -# Save password row for root -# - -create temporary table tmp select * from mysql.user where host="localhost" and user="root"; - -# -# Test slave with wrong password -# - -save_master_pos; -connection slave; -sync_with_master; -STOP SLAVE; -connection master; -UPDATE mysql.user SET password=password('foo') WHERE host='localhost' AND user='root'; -connection slave; -START SLAVE; -connection master; -# -# Give slave time to do at last one failed connect retry -# This one must be short so that the slave will not stop retrying -real_sleep 2; -UPDATE mysql.user SET password=password('') WHERE host='localhost' AND user='root'; -# Give slave time to connect (will retry every second) - -sleep 2; - -CREATE TABLE t3(n INT); -INSERT INTO t3 VALUES(1),(2); -sync_slave_with_master; -SELECT * FROM t3 ORDER BY n; -SELECT SUM(LENGTH(word)) FROM t1; -connection master; -DROP TABLE t1,t3; -save_master_pos; -connection slave; -sync_with_master; - -# Test if the slave SQL thread can be more than 16K behind the slave -# I/O thread (> IO_SIZE) - -connection master; -# we'll use table-level locking to delay slave SQL thread -eval CREATE TABLE t1 (n INT) ENGINE=$engine_type; -sync_slave_with_master; -connection master; -RESET MASTER; -connection slave; -STOP SLAVE; -RESET SLAVE; - -connection master; -let $1=5000; -# Generate 16K of relay log -disable_query_log; -while ($1) -{ - eval INSERT INTO t1 VALUES($1); - dec $1; -} -enable_query_log; -SELECT COUNT(*) FROM t1; -save_master_pos; - -# Try to cause a large relay log lag on the slave by locking t1 -connection slave; -LOCK TABLES t1 READ; -START SLAVE; -UNLOCK TABLES; -sync_with_master; -SELECT COUNT(*) FROM t1; - -connection master; -DROP TABLE t1; -CREATE TABLE t1 (n INT); -INSERT INTO t1 VALUES(3456); -sync_slave_with_master; -SELECT n FROM t1; - -connection master; -DROP TABLE t1; - -# resttore old passwords -replace into mysql.user select * from tmp; -drop temporary table tmp; - -sync_slave_with_master; diff --git a/mysql-test/suite/rpl/r/rpl_create_drop_user.result b/mysql-test/suite/rpl/r/rpl_create_drop_user.result index f9069530e82..61b351b50df 100644 --- a/mysql-test/suite/rpl/r/rpl_create_drop_user.result +++ b/mysql-test/suite/rpl/r/rpl_create_drop_user.result @@ -18,13 +18,13 @@ u2@localhost disconnect user_a; connection master; SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; -user password plugin authentication_string -u1 mysql_native_password *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 +User Password plugin authentication_string +u1 *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 mysql_native_password *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 u2 mysql_native_password connection slave; SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; -user password plugin authentication_string -u1 mysql_native_password *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 +User Password plugin authentication_string +u1 *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 mysql_native_password *D9553C4CE316A9845CE49E30A2D7E3857AF966C4 u2 mysql_native_password connection master; CREATE OR REPLACE USER u1@localhost IDENTIFIED BY 'abcdefghijk2'; @@ -36,13 +36,13 @@ u1@localhost disconnect user_a; connection master; SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; -user password plugin authentication_string -u1 mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E +User Password plugin authentication_string +u1 *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E u2 mysql_native_password connection slave; SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; -user password plugin authentication_string -u1 mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E +User Password plugin authentication_string +u1 *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E u2 mysql_native_password connection master; CREATE USER u1@localhost; @@ -51,8 +51,8 @@ DROP USER u3@localhost; ERROR HY000: Operation DROP USER failed for 'u3'@'localhost' connection slave; SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; -user password plugin authentication_string -u1 mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E +User Password plugin authentication_string +u1 *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E mysql_native_password *A9A5EF53CE2EFAA6F4A746D63A917B2370971A7E u2 mysql_native_password connection master; DROP USER IF EXISTS u1@localhost; @@ -62,5 +62,5 @@ Warnings: Note 1974 Can't drop user 'u3'@'localhost'; it doesn't exist connection slave; SELECT user,password,plugin,authentication_string FROM mysql.user WHERE user LIKE 'u%' ; -user password plugin authentication_string +User Password plugin authentication_string include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_ddl.result b/mysql-test/suite/rpl/r/rpl_ddl.result index 68c5e91f42e..22ce9a288c1 100644 --- a/mysql-test/suite/rpl/r/rpl_ddl.result +++ b/mysql-test/suite/rpl/r/rpl_ddl.result @@ -1354,11 +1354,11 @@ MAX(f1) TEST-INFO: SLAVE: The INSERT is committed (Succeeded) connection master; SELECT user FROM mysql.user WHERE user = 'user1'; -user +User user1 connection slave; SELECT user FROM mysql.user WHERE user = 'user1'; -user +User user1 connection master; @@ -1399,11 +1399,11 @@ MAX(f1) TEST-INFO: SLAVE: The INSERT is committed (Succeeded) connection master; SELECT user FROM mysql.user WHERE user = 'rename1'; -user +User rename1 connection slave; SELECT user FROM mysql.user WHERE user = 'rename1'; -user +User rename1 connection master; @@ -1444,10 +1444,10 @@ MAX(f1) TEST-INFO: SLAVE: The INSERT is committed (Succeeded) connection master; SELECT user FROM mysql.user WHERE user = 'rename1'; -user +User connection slave; SELECT user FROM mysql.user WHERE user = 'rename1'; -user +User use test; connection master; DROP TEMPORARY TABLE mysqltest1.t22; diff --git a/mysql-test/suite/rpl/r/rpl_do_grant.result b/mysql-test/suite/rpl/r/rpl_do_grant.result index 9f6328bce8e..5fa1002f9ac 100644 --- a/mysql-test/suite/rpl/r/rpl_do_grant.result +++ b/mysql-test/suite/rpl/r/rpl_do_grant.result @@ -1,14 +1,6 @@ include/master-slave.inc [connection master] connection master; -delete from mysql.user where user=_binary'rpl_do_grant'; -delete from mysql.db where user=_binary'rpl_do_grant'; -flush privileges; -connection slave; -delete from mysql.user where user=_binary'rpl_ignore_grant'; -delete from mysql.db where user=_binary'rpl_ignore_grant'; -flush privileges; -connection master; create user rpl_do_grant@localhost; grant select on *.* to rpl_do_grant@localhost; grant drop on test.* to rpl_do_grant@localhost; @@ -20,11 +12,11 @@ GRANT DROP ON `test`.* TO 'rpl_do_grant'@'localhost' connection master; set password for rpl_do_grant@localhost=password("does it work?"); connection slave; -select authentication_string<>_binary'' from mysql.user where user=_binary'rpl_do_grant'; -authentication_string<>_binary'' +select authentication_string<>'' from mysql.user where user='rpl_do_grant'; +authentication_string<>'' 1 connection master; -update mysql.user set authentication_string='' where user='rpl_do_grant'; +update mysql.global_priv set priv=json_remove(priv, '$.authentication_string') where user='rpl_do_grant'; flush privileges; select authentication_string<>'' from mysql.user where user='rpl_do_grant'; authentication_string<>'' @@ -37,13 +29,8 @@ select authentication_string<>'' from mysql.user where user='rpl_do_grant'; authentication_string<>'' 1 connection master; -delete from mysql.user where user=_binary'rpl_do_grant'; -delete from mysql.db where user=_binary'rpl_do_grant'; -flush privileges; +drop user rpl_do_grant@localhost; connection slave; -delete from mysql.user where user=_binary'rpl_do_grant'; -delete from mysql.db where user=_binary'rpl_do_grant'; -flush privileges; connection master; show grants for rpl_do_grant@localhost; ERROR 42000: There is no such grant defined for user 'rpl_do_grant' on host 'localhost' @@ -328,5 +315,6 @@ Grantor root@localhost connection master; DROP USER user_bug27606@localhost; -update mysql.user set plugin=''; +select priv into @root_priv from mysql.global_priv where user='root' and host='127.0.0.1'; +update mysql.global_priv set priv=@root_priv where user='root' and host='localhost'; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_grant.result b/mysql-test/suite/rpl/r/rpl_grant.result index 0f546f7edc4..274a8505fb8 100644 --- a/mysql-test/suite/rpl/r/rpl_grant.result +++ b/mysql-test/suite/rpl/r/rpl_grant.result @@ -4,7 +4,7 @@ connection master; CREATE USER dummy@localhost; CREATE USER dummy1@localhost, dummy2@localhost; SELECT user, host FROM mysql.user WHERE user like 'dummy%'; -user host +User Host dummy localhost dummy1 localhost dummy2 localhost @@ -14,7 +14,7 @@ COUNT(*) connection slave; **** On Slave **** SELECT user,host FROM mysql.user WHERE user like 'dummy%'; -user host +User Host dummy localhost dummy1 localhost dummy2 localhost @@ -28,13 +28,13 @@ DROP USER nonexisting@localhost, dummy@localhost; ERROR HY000: Operation DROP USER failed for 'nonexisting'@'localhost' DROP USER dummy1@localhost, dummy2@localhost; SELECT user, host FROM mysql.user WHERE user like 'dummy%'; -user host +User Host SELECT COUNT(*) FROM mysql.user WHERE user like 'dummy%'; COUNT(*) 0 connection slave; SELECT user,host FROM mysql.user WHERE user like 'dummy%'; -user host +User Host SELECT COUNT(*) FROM mysql.user WHERE user like 'dummy%'; COUNT(*) 0 diff --git a/mysql-test/suite/rpl/r/rpl_ignore_revoke.result b/mysql-test/suite/rpl/r/rpl_ignore_revoke.result index c86f2f4e4df..cc65d9dacfd 100644 --- a/mysql-test/suite/rpl/r/rpl_ignore_revoke.result +++ b/mysql-test/suite/rpl/r/rpl_ignore_revoke.result @@ -4,26 +4,26 @@ connection master; grant select on *.* to 'user_foo'@'%' identified by 'user_foopass'; revoke select on *.* from 'user_foo'@'%'; select select_priv from mysql.user where user='user_foo' /* master:must be N */; -select_priv +Select_priv N connection slave; grant select on *.* to 'user_foo'@'%' identified by 'user_foopass'; revoke select on *.* from 'user_foo'@'%'; select select_priv from mysql.user where user='user_foo' /* slave:must be N */; -select_priv +Select_priv N grant select on *.* to 'user_foo'@'%' identified by 'user_foopass'; select select_priv from mysql.user where user='user_foo' /* slave:must be Y */; -select_priv +Select_priv Y connection master; revoke select on *.* from 'user_foo'; select select_priv from mysql.user where user='user_foo' /* master:must be N */; -select_priv +Select_priv N connection slave; select select_priv from mysql.user where user='user_foo' /* slave:must get Y */; -select_priv +Select_priv Y connection slave; revoke select on *.* FROM 'user_foo'; diff --git a/mysql-test/suite/rpl/r/rpl_ignore_table.result b/mysql-test/suite/rpl/r/rpl_ignore_table.result index 4eeb333d10c..511eff51d22 100644 --- a/mysql-test/suite/rpl/r/rpl_ignore_table.result +++ b/mysql-test/suite/rpl/r/rpl_ignore_table.result @@ -1,7 +1,7 @@ include/master-slave.inc [connection master] call mtr.add_suppression("Can't find record in 't.'"); -call mtr.add_suppression("Can't find record in 'user'"); +call mtr.add_suppression("Can't find record in 'global_priv'"); call mtr.add_suppression("Can't find record in 'tables_priv'"); **** Test case for BUG#16487 **** connection master; @@ -32,12 +32,7 @@ to mysqltest3@localhost; create database mysqltest2; create table mysqltest2.t2 (id int); GRANT SELECT ON mysqltest2.t2 TO mysqltest4@localhost IDENTIFIED BY 'pass'; -insert into mysql.user (user, host) values ("mysqltest5", "somehost"); -Warnings: -Warning 1364 Field 'ssl_cipher' doesn't have a default value -Warning 1364 Field 'x509_issuer' doesn't have a default value -Warning 1364 Field 'x509_subject' doesn't have a default value -Warning 1364 Field 'authentication_string' doesn't have a default value +insert into mysql.global_priv (user, host) values ("mysqltest5", "somehost"); GRANT SELECT ON *.* TO mysqltest6@localhost; GRANT INSERT ON *.* TO mysqltest6@localhost; GRANT INSERT ON test.* TO mysqltest6@localhost; diff --git a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result index 0fbfb7d8f8c..89f59deae73 100644 --- a/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result +++ b/mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result @@ -481,71 +481,71 @@ SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; ******************** CREATE USER ******************** CREATE USER 'user_test_rpl'@'localhost' IDENTIFIED BY PASSWORD '*1111111111111111111111111111111111111111'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *1111111111111111111111111111111111111111 mysql_native_password *1111111111111111111111111111111111111111 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *1111111111111111111111111111111111111111 mysql_native_password *1111111111111111111111111111111111111111 N connection master; ******************** GRANT ******************** GRANT SELECT ON *.* TO 'user_test_rpl'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 Y +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *1111111111111111111111111111111111111111 mysql_native_password *1111111111111111111111111111111111111111 Y connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 Y +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *1111111111111111111111111111111111111111 mysql_native_password *1111111111111111111111111111111111111111 Y connection master; ******************** REVOKE ******************** REVOKE SELECT ON *.* FROM 'user_test_rpl'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *1111111111111111111111111111111111111111 mysql_native_password *1111111111111111111111111111111111111111 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *1111111111111111111111111111111111111111 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *1111111111111111111111111111111111111111 mysql_native_password *1111111111111111111111111111111111111111 N connection master; ******************** SET PASSWORD ******************** SET PASSWORD FOR 'user_test_rpl'@'localhost' = '*0000000000000000000000000000000000000000'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *0000000000000000000000000000000000000000 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl mysql_native_password *0000000000000000000000000000000000000000 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection master; ******************** RENAME USER ******************** RENAME USER 'user_test_rpl'@'localhost' TO 'user_test_rpl_2'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl_2 mysql_native_password *0000000000000000000000000000000000000000 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl_2 *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv -localhost user_test_rpl_2 mysql_native_password *0000000000000000000000000000000000000000 N +Host User Password plugin authentication_string Select_priv +localhost user_test_rpl_2 *0000000000000000000000000000000000000000 mysql_native_password *0000000000000000000000000000000000000000 N connection master; ******************** DROP USER ******************** DROP USER 'user_test_rpl_2'@'localhost'; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv +Host User Password plugin authentication_string Select_priv connection slave; USE test_rpl; SELECT host, user, password, plugin, authentication_string, select_priv FROM mysql.user WHERE user LIKE 'user_test_rpl%'; -host user password plugin authentication_string select_priv +Host User Password plugin authentication_string Select_priv connection master; INSERT INTO t1 VALUES(100, 'test'); diff --git a/mysql-test/suite/rpl/r/rpl_row_001.result b/mysql-test/suite/rpl/r/rpl_row_001.result index f7684d5ad97..976ac0996bf 100644 --- a/mysql-test/suite/rpl/r/rpl_row_001.result +++ b/mysql-test/suite/rpl/r/rpl_row_001.result @@ -1,44 +1,6 @@ include/master-slave.inc [connection master] -CREATE TABLE t1 (word CHAR(20) NOT NULL); -LOAD DATA INFILE 'LOAD_FILE' INTO TABLE t1; -LOAD DATA INFILE 'LOAD_FILE' INTO TABLE t1; -SELECT * FROM t1 ORDER BY word LIMIT 10; -word -Aarhus -Aarhus -Aarhus -Aarhus -Aaron -Aaron -Aaron -Aaron -Ababa -Ababa -create temporary table tmp select * from mysql.user where host="localhost" and user="root"; -connection slave; -STOP SLAVE; -connection master; -UPDATE mysql.user SET password=password('foo') WHERE host='localhost' AND user='root'; -connection slave; -START SLAVE; -connection master; -UPDATE mysql.user SET password=password('') WHERE host='localhost' AND user='root'; -CREATE TABLE t3(n INT); -INSERT INTO t3 VALUES(1),(2); -connection slave; -SELECT * FROM t3 ORDER BY n; -n -1 -2 -SELECT SUM(LENGTH(word)) FROM t1; -SUM(LENGTH(word)) -1022 -connection master; -DROP TABLE t1,t3; -connection slave; -connection master; -CREATE TABLE t1 (n INT) ENGINE=MYISAM; +CREATE TABLE t1 (n INT); connection slave; connection master; RESET MASTER; @@ -66,7 +28,5 @@ n 3456 connection master; DROP TABLE t1; -replace into mysql.user select * from tmp; -drop temporary table tmp; connection slave; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_stm_000001.result b/mysql-test/suite/rpl/r/rpl_stm_000001.result index 47567ef7b72..9ef2ca3bc53 100644 --- a/mysql-test/suite/rpl/r/rpl_stm_000001.result +++ b/mysql-test/suite/rpl/r/rpl_stm_000001.result @@ -19,12 +19,12 @@ abandons connection slave; stop slave; connection master; -create temporary table tmp select * from mysql.user where host="localhost" and user="root"; +create temporary table tmp select * from mysql.global_priv where host="localhost" and user="root"; set password for root@"localhost" = password('foo'); connection slave; start slave; connection master; -replace into mysql.user select * from tmp; +replace into mysql.global_priv select * from tmp; Warnings: Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. REPLACE... SELECT is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are replaced. This order cannot be predicted and may differ on master and the slave drop temporary table tmp; @@ -43,7 +43,7 @@ connection master; drop table t1,t3; connection slave; connection master; -create table t1 (n int) engine=myisam; +create table t1 (n int); connection slave; connection master; reset master; @@ -81,31 +81,4 @@ count(*) 5000 connection master1; drop table t1; -create table t1 (n int); -insert into t1 values(3456); -insert ignore into mysql.user (Host, User, Password) -VALUES ("10.10.10.%", "blafasel2", password("blafasel2")); -Warnings: -Warning 1364 Field 'ssl_cipher' doesn't have a default value -Warning 1364 Field 'x509_issuer' doesn't have a default value -Warning 1364 Field 'x509_subject' doesn't have a default value -Warning 1364 Field 'authentication_string' doesn't have a default value -select select_priv,user from mysql.user where user = _binary'blafasel2'; -select_priv user -N blafasel2 -update mysql.user set Select_priv = "Y" where User= _binary"blafasel2"; -select select_priv,user from mysql.user where user = _binary'blafasel2'; -select_priv user -Y blafasel2 -connection slave; -select n from t1; -n -3456 -select select_priv,user from mysql.user where user = _binary'blafasel2'; -select_priv user -Y blafasel2 -connection master1; -drop table t1; -delete from mysql.user where user="blafasel2"; -connection slave; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_do_grant.test b/mysql-test/suite/rpl/t/rpl_do_grant.test index ba70eda6358..1350585ff93 100644 --- a/mysql-test/suite/rpl/t/rpl_do_grant.test +++ b/mysql-test/suite/rpl/t/rpl_do_grant.test @@ -3,18 +3,6 @@ -- source include/master-slave.inc -# do not be influenced by other tests. -connection master; -delete from mysql.user where user=_binary'rpl_do_grant'; -delete from mysql.db where user=_binary'rpl_do_grant'; -flush privileges; -sync_slave_with_master; -# if these DELETE did nothing on the master, we need to do them manually on the -# slave. -delete from mysql.user where user=_binary'rpl_ignore_grant'; -delete from mysql.db where user=_binary'rpl_ignore_grant'; -flush privileges; - # test replication of GRANT connection master; create user rpl_do_grant@localhost; @@ -27,13 +15,13 @@ show grants for rpl_do_grant@localhost; connection master; set password for rpl_do_grant@localhost=password("does it work?"); sync_slave_with_master; -select authentication_string<>_binary'' from mysql.user where user=_binary'rpl_do_grant'; +select authentication_string<>'' from mysql.user where user='rpl_do_grant'; # # Bug#24158 SET PASSWORD in binary log fails under ANSI_QUOTES # connection master; -update mysql.user set authentication_string='' where user='rpl_do_grant'; +update mysql.global_priv set priv=json_remove(priv, '$.authentication_string') where user='rpl_do_grant'; flush privileges; select authentication_string<>'' from mysql.user where user='rpl_do_grant'; set sql_mode='ANSI_QUOTES'; @@ -42,18 +30,10 @@ set sql_mode=''; sync_slave_with_master; select authentication_string<>'' from mysql.user where user='rpl_do_grant'; - # clear what we have done, to not influence other tests. connection master; -delete from mysql.user where user=_binary'rpl_do_grant'; -delete from mysql.db where user=_binary'rpl_do_grant'; -flush privileges; +drop user rpl_do_grant@localhost; sync_slave_with_master; -# The mysql database is not replicated, so we have to do the deletes -# manually on the slave as well. -delete from mysql.user where user=_binary'rpl_do_grant'; -delete from mysql.db where user=_binary'rpl_do_grant'; -flush privileges; # End of 4.1 tests @@ -363,6 +343,8 @@ SELECT Grantor FROM mysql.tables_priv WHERE User='user_bug27606'; --connection master DROP USER user_bug27606@localhost; -update mysql.user set plugin=''; +select priv into @root_priv from mysql.global_priv where user='root' and host='127.0.0.1'; +update mysql.global_priv set priv=@root_priv where user='root' and host='localhost'; + --source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_ignore_table.test b/mysql-test/suite/rpl/t/rpl_ignore_table.test index 3360b789475..a3fcfc95901 100644 --- a/mysql-test/suite/rpl/t/rpl_ignore_table.test +++ b/mysql-test/suite/rpl/t/rpl_ignore_table.test @@ -3,7 +3,7 @@ source include/have_collation.inc; source include/master-slave.inc; call mtr.add_suppression("Can't find record in 't.'"); -call mtr.add_suppression("Can't find record in 'user'"); +call mtr.add_suppression("Can't find record in 'global_priv'"); call mtr.add_suppression("Can't find record in 'tables_priv'"); # @@ -69,7 +69,7 @@ create table mysqltest2.t2 (id int); GRANT SELECT ON mysqltest2.t2 TO mysqltest4@localhost IDENTIFIED BY 'pass'; # Create a grant manually -insert into mysql.user (user, host) values ("mysqltest5", "somehost"); +insert into mysql.global_priv (user, host) values ("mysqltest5", "somehost"); # Partial replicate 3 with *.* GRANT SELECT ON *.* TO mysqltest6@localhost; diff --git a/mysql-test/suite/rpl/t/rpl_row_001.test b/mysql-test/suite/rpl/t/rpl_row_001.test index 06d01f2476e..f66c61ffb6e 100644 --- a/mysql-test/suite/rpl/t/rpl_row_001.test +++ b/mysql-test/suite/rpl/t/rpl_row_001.test @@ -2,10 +2,50 @@ # By JBM 2005-02-15 Wrapped to allow reuse of test code# ######################################################## -- source include/have_binlog_format_row.inc -# Slow test, don't run during staging part --- source include/not_staging.inc -- source include/master-slave.inc -let $engine_type=MYISAM; --- source include/rpl_row_001.test +# Test if the slave SQL thread can be more than 16K behind the slave +# I/O thread (> IO_SIZE) + +# we'll use table-level locking to delay slave SQL thread +eval CREATE TABLE t1 (n INT); +sync_slave_with_master; +connection master; +RESET MASTER; +connection slave; +STOP SLAVE; +RESET SLAVE; + +connection master; +let $1=5000; +# Generate 16K of relay log +disable_query_log; +while ($1) +{ + eval INSERT INTO t1 VALUES($1); + dec $1; +} +enable_query_log; +SELECT COUNT(*) FROM t1; +save_master_pos; + +# Try to cause a large relay log lag on the slave by locking t1 +connection slave; +LOCK TABLES t1 READ; +START SLAVE; +UNLOCK TABLES; +sync_with_master; +SELECT COUNT(*) FROM t1; + +connection master; +DROP TABLE t1; +CREATE TABLE t1 (n INT); +INSERT INTO t1 VALUES(3456); +sync_slave_with_master; +SELECT n FROM t1; + +connection master; +DROP TABLE t1; + +sync_slave_with_master; --source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_stm_000001.test b/mysql-test/suite/rpl/t/rpl_stm_000001.test index 72c89789af4..62b5c5b1cd0 100644 --- a/mysql-test/suite/rpl/t/rpl_stm_000001.test +++ b/mysql-test/suite/rpl/t/rpl_stm_000001.test @@ -4,7 +4,6 @@ -- source include/master-slave.inc CALL mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT"); ---let $engine_type= myisam # Load some data into t1 create table t1 (word char(20) not null); @@ -19,7 +18,7 @@ select * from t1 limit 10; sync_slave_with_master; stop slave; connection master; -create temporary table tmp select * from mysql.user where host="localhost" and user="root"; +create temporary table tmp select * from mysql.global_priv where host="localhost" and user="root"; set password for root@"localhost" = password('foo'); connection slave; start slave; @@ -28,7 +27,7 @@ connection master; # Give slave time to do at last one failed connect retry # This one must be short so that the slave will not stop retrying real_sleep 2; -replace into mysql.user select * from tmp; +replace into mysql.global_priv select * from tmp; drop temporary table tmp; flush privileges; # Give slave time to connect (will retry every second) @@ -48,7 +47,7 @@ sync_slave_with_master; connection master; # we'll use table-level locking to delay slave SQL thread -eval create table t1 (n int) engine=$engine_type; +eval create table t1 (n int); sync_slave_with_master; connection master; reset master; @@ -114,20 +113,6 @@ connection slave; select count(*) from t1; connection master1; drop table t1; -create table t1 (n int); -insert into t1 values(3456); -insert ignore into mysql.user (Host, User, Password) - VALUES ("10.10.10.%", "blafasel2", password("blafasel2")); -select select_priv,user from mysql.user where user = _binary'blafasel2'; -update mysql.user set Select_priv = "Y" where User= _binary"blafasel2"; -select select_priv,user from mysql.user where user = _binary'blafasel2'; -sync_slave_with_master; -select n from t1; -select select_priv,user from mysql.user where user = _binary'blafasel2'; -connection master1; -drop table t1; -delete from mysql.user where user="blafasel2"; -sync_slave_with_master; # End of 4.1 tests --source include/rpl_end.inc -- cgit v1.2.1 From c4ab352b670618bb478138cfbf3ed195317b3ccb Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Sun, 16 Dec 2018 02:21:41 +0400 Subject: MDEV-14576 Include full name of object in message about incorrect value for column. The error message modified. Then the TABLE_SHARE::error_table_name() implementation taken from 10.3, to be used as a name of the table in this message. --- mysql-test/suite/rpl/r/rpl_bug31076.result | 2 +- mysql-test/suite/rpl/r/rpl_extra_col_master_innodb.result | 2 +- mysql-test/suite/rpl/r/rpl_extra_col_master_myisam.result | 2 +- mysql-test/suite/rpl/r/rpl_rewrt_db.result | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_bug31076.result b/mysql-test/suite/rpl/r/rpl_bug31076.result index c163cc552ab..8fcbba1c4cd 100644 --- a/mysql-test/suite/rpl/r/rpl_bug31076.result +++ b/mysql-test/suite/rpl/r/rpl_bug31076.result @@ -58,7 +58,7 @@ SET @@session.time_zone='UTC'/*!*/; INSERT INTO visits (myid, user_id, src, ip, cc, org, ref, time, host, entry, visit_exit, visit_start) VALUES ('3m3l4rhs6do0sf5p1i9lr94g928a272v', '', '', INET_ATON('71.118.124.98'), '', '', 'http://dev.mysql.com/downloads/connector/j/3.0.html', NULL, 'dev.mysql.com', '/get/Downloads/Connector-J/mysql-connector-java-3.0.17-ga.zip/from/pick', '/get/Downloads/Connector-J/mysql-connector-java-3.0.17-ga.zip/from/pick', NOW())/*!*/; Warnings: -Warning 1366 Incorrect integer value: '' for column 'user_id' at row 1 +Warning 1366 Incorrect integer value: '' for column `track`.`visits`.`user_id` at row 1 SELECT * FROM visits; visits_id myid src ip cc org ref time host entry visit_exit user_id visit_start 21231039 3m3l4rhs6do0sf5p1i9lr94g928a272v 1198947426 http://dev.mysql.com/downloads/connector/j/3.0.html 2007-09-18 03:59:02 dev.mysql.com /get/Downloads/Connector-J/mysql-connector-java-3.0.17-ga.zip/from/pick /get/Downloads/Connector-J/mysql-connector-java-3.0.17-ga.zip/from/pick 0 2007-09-18 03:59:02 diff --git a/mysql-test/suite/rpl/r/rpl_extra_col_master_innodb.result b/mysql-test/suite/rpl/r/rpl_extra_col_master_innodb.result index b59c21724b2..3aa7c07a845 100644 --- a/mysql-test/suite/rpl/r/rpl_extra_col_master_innodb.result +++ b/mysql-test/suite/rpl/r/rpl_extra_col_master_innodb.result @@ -194,7 +194,7 @@ INSERT into t31 set f1=1, f2=1, f3=1, f4='first'; insert ignore into t31 set f1=1, f2=1, f3=2, f4='second', f9=2.2, f10='seven samurai', f28=222.222, f35='222'; Warnings: -Warning 1366 Incorrect integer value: 'seven samurai' for column 'f10' at row 1 +Warning 1366 Incorrect integer value: 'seven samurai' for column `test`.`t31`.`f10` at row 1 insert ignore into t31 values (1, 1, 3, 'third', /* f5 BIGINT, */ 333333333333333333333333, /* f6 BLOB, */ '3333333333333333333333', diff --git a/mysql-test/suite/rpl/r/rpl_extra_col_master_myisam.result b/mysql-test/suite/rpl/r/rpl_extra_col_master_myisam.result index b9d254e1b42..0918364b28e 100644 --- a/mysql-test/suite/rpl/r/rpl_extra_col_master_myisam.result +++ b/mysql-test/suite/rpl/r/rpl_extra_col_master_myisam.result @@ -194,7 +194,7 @@ INSERT into t31 set f1=1, f2=1, f3=1, f4='first'; insert ignore into t31 set f1=1, f2=1, f3=2, f4='second', f9=2.2, f10='seven samurai', f28=222.222, f35='222'; Warnings: -Warning 1366 Incorrect integer value: 'seven samurai' for column 'f10' at row 1 +Warning 1366 Incorrect integer value: 'seven samurai' for column `test`.`t31`.`f10` at row 1 insert ignore into t31 values (1, 1, 3, 'third', /* f5 BIGINT, */ 333333333333333333333333, /* f6 BLOB, */ '3333333333333333333333', diff --git a/mysql-test/suite/rpl/r/rpl_rewrt_db.result b/mysql-test/suite/rpl/r/rpl_rewrt_db.result index f6c7e4ad54e..5230283fd6c 100644 --- a/mysql-test/suite/rpl/r/rpl_rewrt_db.result +++ b/mysql-test/suite/rpl/r/rpl_rewrt_db.result @@ -79,10 +79,10 @@ load data infile '../../std_data/loaddata3.dat' into table t1 fields terminated Warnings: Note 1265 Data truncated for column 'a' at row 1 Note 1265 Data truncated for column 'a' at row 2 -Warning 1366 Incorrect integer value: 'error ' for column 'a' at row 3 +Warning 1366 Incorrect integer value: 'error ' for column `test`.`t1`.`a` at row 3 Warning 1262 Row 3 was truncated; it contained more data than there were input columns Note 1265 Data truncated for column 'a' at row 4 -Warning 1366 Incorrect integer value: 'wrong end ' for column 'a' at row 5 +Warning 1366 Incorrect integer value: 'wrong end ' for column `test`.`t1`.`a` at row 5 Warning 1262 Row 5 was truncated; it contained more data than there were input columns connection slave; connection slave; @@ -101,7 +101,7 @@ Note 1265 Data truncated for column 'a' at row 1 Note 1265 Data truncated for column 'a' at row 2 Note 1265 Data truncated for column 'a' at row 3 Warning 1366 Incorrect integer value: ' -' for column 'a' at row 4 +' for column `test`.`t1`.`a` at row 4 Warning 1261 Row 4 doesn't contain data for all columns connection slave; connection slave; -- cgit v1.2.1 From f16d4d4c6ee81cfee3b0d1cb2f2219b1fa982e2e Mon Sep 17 00:00:00 2001 From: Sachin Date: Wed, 19 Dec 2018 16:33:00 +0530 Subject: MDEV-17720 slave_ddl_exec_mode=IDEMPOTENT does not handle DROP DATABASE Relevant if exists flag are added for create database and drop database. --- mysql-test/suite/rpl/r/rpl_idempotency.result | 12 ++++++++++++ mysql-test/suite/rpl/t/rpl_idempotency.test | 21 +++++++++++++++++++++ 2 files changed, 33 insertions(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_idempotency.result b/mysql-test/suite/rpl/r/rpl_idempotency.result index 38b955d7697..03482e6fefb 100644 --- a/mysql-test/suite/rpl/r/rpl_idempotency.result +++ b/mysql-test/suite/rpl/r/rpl_idempotency.result @@ -67,6 +67,18 @@ a -3 1 include/check_slave_no_error.inc +drop table t1, t2; DROP TABLE t1, t2; +include/check_slave_no_error.inc +create database d; +create database e; +create database d; +create database if not exists e; +include/check_slave_no_error.inc +drop database d; +drop database e; +drop database d; +drop database if exists e; +include/check_slave_no_error.inc SET @@global.slave_exec_mode= @old_slave_exec_mode; include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_idempotency.test b/mysql-test/suite/rpl/t/rpl_idempotency.test index 186c6260154..e801aac9b5e 100644 --- a/mysql-test/suite/rpl/t/rpl_idempotency.test +++ b/mysql-test/suite/rpl/t/rpl_idempotency.test @@ -75,9 +75,30 @@ SELECT * FROM t1 ORDER BY a; SELECT * FROM t2 ORDER BY a; --source include/check_slave_no_error.inc +connection slave; +drop table t1, t2; + connection master; DROP TABLE t1, t2; sync_slave_with_master; +--source include/check_slave_no_error.inc +create database d; +create database e; + +connection master; +create database d; +create database if not exists e; + +sync_slave_with_master; +--source include/check_slave_no_error.inc +drop database d; +drop database e; + +connection master; +drop database d; +drop database if exists e; +sync_slave_with_master; +--source include/check_slave_no_error.inc SET @@global.slave_exec_mode= @old_slave_exec_mode; -- cgit v1.2.1 From 79078167c36c83132413a82bfb4494fd229be810 Mon Sep 17 00:00:00 2001 From: Sachin Date: Wed, 19 Dec 2018 22:30:28 +0530 Subject: MDEV-17753 ALTER USER fail to replicate Change mysql_alter_user to log alter user command. --- mysql-test/suite/rpl/r/rpl_user.result | 11 +++++++++++ mysql-test/suite/rpl/t/rpl_user.test | 11 +++++++++++ 2 files changed, 22 insertions(+) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_user.result b/mysql-test/suite/rpl/r/rpl_user.result index 34f15d41209..2a8bf69501c 100644 --- a/mysql-test/suite/rpl/r/rpl_user.result +++ b/mysql-test/suite/rpl/r/rpl_user.result @@ -31,6 +31,13 @@ Host User fakehost barbar fakehost foofoo connection master; +alter user 'foofoo'@'fakehost' identified by 'foo'; +alter user 'non_exist_user1'@'fakehost' identified by 'foo', 'barbar'@'fakehost' identified by 'bar'; +ERROR HY000: Operation ALTER USER failed for 'non_exist_user1'@'fakehost' +alter user 'non_exist_user1'@'fakehost' identified by 'foo', 'non_exist_user2'@'fakehost' identified by 'bar'; +ERROR HY000: Operation ALTER USER failed for 'non_exist_user1'@'fakehost','non_exist_user2'@'fakehost' +connection slave; +connection master; drop user 'foofoo'@'fakehost'; drop user 'not_exist_user1'@'fakehost', 'barbar'@'fakehost'; ERROR HY000: Operation DROP USER failed for 'not_exist_user1'@'fakehost' @@ -51,6 +58,10 @@ master-bin.000001 # Query # # use `test`; rename user 'foo'@'fakehost' to 'foofo master-bin.000001 # Gtid # # GTID #-#-# master-bin.000001 # Query # # use `test`; rename user 'not_exist_user1'@'fakehost' to 'foobar'@'fakehost', 'bar'@'fakehost' to 'barbar'@'fakehost' master-bin.000001 # Gtid # # GTID #-#-# +master-bin.000001 # Query # # use `test`; alter user 'foofoo'@'fakehost' identified by 'foo' +master-bin.000001 # Gtid # # GTID #-#-# +master-bin.000001 # Query # # use `test`; alter user 'non_exist_user1'@'fakehost' identified by 'foo', 'barbar'@'fakehost' identified by 'bar' +master-bin.000001 # Gtid # # GTID #-#-# master-bin.000001 # Query # # use `test`; drop user 'foofoo'@'fakehost' master-bin.000001 # Gtid # # GTID #-#-# master-bin.000001 # Query # # use `test`; drop user 'not_exist_user1'@'fakehost', 'barbar'@'fakehost' diff --git a/mysql-test/suite/rpl/t/rpl_user.test b/mysql-test/suite/rpl/t/rpl_user.test index caa17b47733..079c2bf27d5 100644 --- a/mysql-test/suite/rpl/t/rpl_user.test +++ b/mysql-test/suite/rpl/t/rpl_user.test @@ -41,6 +41,17 @@ rename user 'not_exist_user1'@'fakehost' to 'foobar'@'fakehost', 'not_exist_user sync_slave_with_master; select Host,User from mysql.user where Host='fakehost'; +# +# Test alter user +# +connection master; +alter user 'foofoo'@'fakehost' identified by 'foo'; +--error ER_CANNOT_USER +alter user 'non_exist_user1'@'fakehost' identified by 'foo', 'barbar'@'fakehost' identified by 'bar'; +--error ER_CANNOT_USER +alter user 'non_exist_user1'@'fakehost' identified by 'foo', 'non_exist_user2'@'fakehost' identified by 'bar'; +sync_slave_with_master; + # # Test drop user # -- cgit v1.2.1 From 7886a70ef9d8a0fe8f8c0d8ef5c524187e58eaf0 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Wed, 23 Jan 2019 17:18:57 +0100 Subject: MDEV-17421: mtr does not restart the server whose parameters were changed remove tests that rely on specific execution order --- mysql-test/suite/rpl/r/mtr_restart_t1.result | 5 ----- mysql-test/suite/rpl/r/mtr_restart_t2.result | 4 ---- mysql-test/suite/rpl/t/mtr_restart_t1.test | 31 ---------------------------- mysql-test/suite/rpl/t/mtr_restart_t2.test | 18 ---------------- 4 files changed, 58 deletions(-) delete mode 100644 mysql-test/suite/rpl/r/mtr_restart_t1.result delete mode 100644 mysql-test/suite/rpl/r/mtr_restart_t2.result delete mode 100644 mysql-test/suite/rpl/t/mtr_restart_t1.test delete mode 100644 mysql-test/suite/rpl/t/mtr_restart_t2.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/mtr_restart_t1.result b/mysql-test/suite/rpl/r/mtr_restart_t1.result deleted file mode 100644 index 56b64a2fc70..00000000000 --- a/mysql-test/suite/rpl/r/mtr_restart_t1.result +++ /dev/null @@ -1,5 +0,0 @@ -include/master-slave.inc -[connection master] -include/rpl_stop_server.inc [server_number=1] -new auto_increment_offset=111 -include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/mtr_restart_t2.result b/mysql-test/suite/rpl/r/mtr_restart_t2.result deleted file mode 100644 index 3c8fe59d607..00000000000 --- a/mysql-test/suite/rpl/r/mtr_restart_t2.result +++ /dev/null @@ -1,4 +0,0 @@ -include/master-slave.inc -[connection master] -auto_increment_offset=1 -include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/mtr_restart_t1.test b/mysql-test/suite/rpl/t/mtr_restart_t1.test deleted file mode 100644 index 3003a49c424..00000000000 --- a/mysql-test/suite/rpl/t/mtr_restart_t1.test +++ /dev/null @@ -1,31 +0,0 @@ -# This test verifies that mtr will restart the mysqld process, -# whose parameters were changed during the test. The verification -# itself is carried out in the following mtr_restart_t2 test. -# If mtr restart the mysqld process, then the auto_increment_offset -# parameter value will be reset to the default ("1"), but if there -# is no restart, then we will see the changed value ("111") during -# the next test. -# ---source include/have_binlog_format_row.inc ---source include/master-slave.inc - -connection master; - -let $auto_increment_offset = `SELECT @@global.auto_increment_offset`; - ---let $rpl_server_number=1 -source include/rpl_stop_server.inc; ---let $rpl_server_parameters=--auto-increment-offset=111 ---let $keep_include_silent=1 -source include/rpl_start_server.inc; ---let $keep_include_silent=0 - -let $auto_increment_offset_new = `SELECT @@global.auto_increment_offset`; ---echo new auto_increment_offset=$auto_increment_offset_new - ---disable_query_log ---eval SET @@global.auto_increment_offset = $auto_increment_offset; ---enable_query_log - ---connection master ---source include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/mtr_restart_t2.test b/mysql-test/suite/rpl/t/mtr_restart_t2.test deleted file mode 100644 index ab246af6b44..00000000000 --- a/mysql-test/suite/rpl/t/mtr_restart_t2.test +++ /dev/null @@ -1,18 +0,0 @@ -# This test verifies that mtr will restart the mysqld process, -# whose parameters were changed during the previous test. If mtr -# restart the mysqld process, then the auto_increment_offsert -# parameter value will be reset to the default ("1"), but if there -# is no restart, then we will see the changed value ("111") in -# this test. -# ---source include/have_binlog_format_row.inc ---source include/master-slave.inc - -connection master; - -let $auto_increment_offset = `SELECT @@global.auto_increment_offset`; - ---echo auto_increment_offset=$auto_increment_offset - ---connection master ---source include/rpl_end.inc -- cgit v1.2.1 From b22354680ef9c5ffeda91cba284ed236fbf3c31e Mon Sep 17 00:00:00 2001 From: Andrei Elkin Date: Wed, 23 Jan 2019 20:16:21 +0200 Subject: merge 10.0 -> 10.1 to resolve MDEV-17803 conflicts. --- .../suite/rpl/r/rpl_row_big_table_id,32bit.rdiff | 29 +++++++++++ mysql-test/suite/rpl/r/rpl_row_big_table_id.result | 38 +++++++++++++++ mysql-test/suite/rpl/t/rpl_row_big_table_id.test | 57 ++++++++++++++++++++++ 3 files changed, 124 insertions(+) create mode 100644 mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff create mode 100644 mysql-test/suite/rpl/r/rpl_row_big_table_id.result create mode 100644 mysql-test/suite/rpl/t/rpl_row_big_table_id.test (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff b/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff new file mode 100644 index 00000000000..1dbbfa9252f --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff @@ -0,0 +1,29 @@ +--- r/rpl_row_big_table_id.result 2019-01-23 19:58:07.204914873 +0200 ++++ r/rpl_row_big_table_id_32bit.result 2019-01-23 19:43:54.590640934 +0200 +@@ -19,20 +19,20 @@ + master-bin.000002 # Gtid 1 # GTID #-#-# + master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' + master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +-master-bin.000002 # Table_map 1 # table_id: 4294967295 (test.t) +-master-bin.000002 # Write_rows_v1 1 # table_id: 4294967295 flags: STMT_END_F ++master-bin.000002 # Table_map 1 # table_id: 1 (test.t) ++master-bin.000002 # Write_rows_v1 1 # table_id: 1 flags: STMT_END_F + master-bin.000002 # Query 1 # COMMIT + master-bin.000002 # Gtid 1 # GTID #-#-# + master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' + master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +-master-bin.000002 # Table_map 1 # table_id: 4294967296 (test.t) +-master-bin.000002 # Write_rows_v1 1 # table_id: 4294967296 flags: STMT_END_F ++master-bin.000002 # Table_map 1 # table_id: 2 (test.t) ++master-bin.000002 # Write_rows_v1 1 # table_id: 2 flags: STMT_END_F + master-bin.000002 # Query 1 # COMMIT + master-bin.000002 # Gtid 1 # GTID #-#-# + master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' + master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +-master-bin.000002 # Table_map 1 # table_id: 4294967297 (test.t) +-master-bin.000002 # Write_rows_v1 1 # table_id: 4294967297 flags: STMT_END_F ++master-bin.000002 # Table_map 1 # table_id: 3 (test.t) ++master-bin.000002 # Write_rows_v1 1 # table_id: 3 flags: STMT_END_F + master-bin.000002 # Query 1 # COMMIT + DROP TABLE t; + include/rpl_end.inc diff --git a/mysql-test/suite/rpl/r/rpl_row_big_table_id.result b/mysql-test/suite/rpl/r/rpl_row_big_table_id.result new file mode 100644 index 00000000000..d8ecadc61d1 --- /dev/null +++ b/mysql-test/suite/rpl/r/rpl_row_big_table_id.result @@ -0,0 +1,38 @@ +include/master-slave.inc +[connection master] +include/rpl_restart_server.inc [server_number=1] +SET @@debug_dbug="d,simulate_big_table_id"; +CREATE TABLE t (a int); +INSERT INTO t SET a= 0; +ALTER TABLE t comment ''; +INSERT INTO t SET a= 1; +ALTER TABLE t comment ''; +INSERT INTO t SET a= 2; +ALTER TABLE t comment ''; +INSERT INTO t SET a= 3; +show binlog events in from ; +Log_name Pos Event_type Server_id End_log_pos Info +master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +master-bin.000002 # Table_map 1 # table_id: 4294967294 (test.t) +master-bin.000002 # Write_rows_v1 1 # table_id: 4294967294 flags: STMT_END_F +master-bin.000002 # Query 1 # COMMIT +master-bin.000002 # Gtid 1 # GTID #-#-# +master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' +master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +master-bin.000002 # Table_map 1 # table_id: 4294967295 (test.t) +master-bin.000002 # Write_rows_v1 1 # table_id: 4294967295 flags: STMT_END_F +master-bin.000002 # Query 1 # COMMIT +master-bin.000002 # Gtid 1 # GTID #-#-# +master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' +master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +master-bin.000002 # Table_map 1 # table_id: 4294967296 (test.t) +master-bin.000002 # Write_rows_v1 1 # table_id: 4294967296 flags: STMT_END_F +master-bin.000002 # Query 1 # COMMIT +master-bin.000002 # Gtid 1 # GTID #-#-# +master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' +master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# +master-bin.000002 # Table_map 1 # table_id: 4294967297 (test.t) +master-bin.000002 # Write_rows_v1 1 # table_id: 4294967297 flags: STMT_END_F +master-bin.000002 # Query 1 # COMMIT +DROP TABLE t; +include/rpl_end.inc diff --git a/mysql-test/suite/rpl/t/rpl_row_big_table_id.test b/mysql-test/suite/rpl/t/rpl_row_big_table_id.test new file mode 100644 index 00000000000..0c6f9d5e862 --- /dev/null +++ b/mysql-test/suite/rpl/t/rpl_row_big_table_id.test @@ -0,0 +1,57 @@ +################################################################## +# rpl_row_big_table_id +# +# MDEV-17803 Row-based event is not applied when +# table map id is greater 32 bit int +# +# Verify row-based events applying when table map id value is about and greater +# than 1 << 32. +################################################################## +--source include/word_size.inc +--source include/have_debug.inc +--source include/have_binlog_format_row.inc +--source include/master-slave.inc + +--connection master +# To reset last table id +--let $rpl_server_number= 1 +--source include/rpl_restart_server.inc + +SET @@debug_dbug="d,simulate_big_table_id"; +CREATE TABLE t (a int); + +--let $binlog_file= query_get_value(SHOW MASTER STATUS, File, 1) +--let $binlog_pos= query_get_value(SHOW MASTER STATUS, Position, 1) +INSERT INTO t SET a= 0; +ALTER TABLE t comment ''; +INSERT INTO t SET a= 1; +ALTER TABLE t comment ''; +INSERT INTO t SET a= 2; +ALTER TABLE t comment ''; +INSERT INTO t SET a= 3; + +# display simulated big table_id +--let $_in_from=in '$binlog_file' from $binlog_pos +--replace_result "$_in_from" "in from " +--replace_column 2 # 5 # +--replace_regex /\/\* xid=.* \*\//\/* XID *\// /file_id=[0-9]+/file_id=#/ /GTID [0-9]+-[0-9]+-[0-9]+/GTID #-#-#/ +--eval show binlog events in '$binlog_file' from $binlog_pos + + +--sync_slave_with_master + +if (`SELECT sum(a) != 6 FROM t`) +{ + --echo *** unexpected result; check slave applier *** + --die +} + + +# Cleanup + +--connection master +DROP TABLE t; + +--sync_slave_with_master + +--source include/rpl_end.inc -- cgit v1.2.1 From eff7f9bea26a327974bb87ddfaa18ad57e7391a2 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Mon, 28 Jan 2019 13:49:47 +0100 Subject: update the result file after the merge --- .../suite/rpl/r/rpl_row_big_table_id,32bit.rdiff | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'mysql-test/suite/rpl') diff --git a/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff b/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff index 0849c5dcf64..2ff34004702 100644 --- a/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff +++ b/mysql-test/suite/rpl/r/rpl_row_big_table_id,32bit.rdiff @@ -4,28 +4,28 @@ master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# master-bin.000002 # Annotate_rows 1 # INSERT INTO t SET a= 1 --master-bin.000002 # Table_map 1 # table_id: 4294967295 (test.t) --master-bin.000002 # Write_rows_v1 1 # table_id: 4294967295 flags: STMT_END_F -+master-bin.000002 # Table_map 1 # table_id: 1 (test.t) -+master-bin.000002 # Write_rows_v1 1 # table_id: 1 flags: STMT_END_F +-master-bin.000002 # Table_map 1 # table_id: 4294967298 (test.t) +-master-bin.000002 # Write_rows_v1 1 # table_id: 4294967298 flags: STMT_END_F ++master-bin.000002 # Table_map 1 # table_id: 4294967294 (test.t) ++master-bin.000002 # Write_rows_v1 1 # table_id: 4294967294 flags: STMT_END_F master-bin.000002 # Query 1 # COMMIT master-bin.000002 # Gtid 1 # GTID #-#-# master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# master-bin.000002 # Annotate_rows 1 # INSERT INTO t SET a= 2 --master-bin.000002 # Table_map 1 # table_id: 4294967296 (test.t) --master-bin.000002 # Write_rows_v1 1 # table_id: 4294967296 flags: STMT_END_F -+master-bin.000002 # Table_map 1 # table_id: 2 (test.t) -+master-bin.000002 # Write_rows_v1 1 # table_id: 2 flags: STMT_END_F +-master-bin.000002 # Table_map 1 # table_id: 4294967299 (test.t) +-master-bin.000002 # Write_rows_v1 1 # table_id: 4294967299 flags: STMT_END_F ++master-bin.000002 # Table_map 1 # table_id: 1 (test.t) ++master-bin.000002 # Write_rows_v1 1 # table_id: 1 flags: STMT_END_F master-bin.000002 # Query 1 # COMMIT master-bin.000002 # Gtid 1 # GTID #-#-# master-bin.000002 # Query 1 # use `test`; ALTER TABLE t comment '' master-bin.000002 # Gtid 1 # BEGIN GTID #-#-# master-bin.000002 # Annotate_rows 1 # INSERT INTO t SET a= 3 --master-bin.000002 # Table_map 1 # table_id: 4294967297 (test.t) --master-bin.000002 # Write_rows_v1 1 # table_id: 4294967297 flags: STMT_END_F -+master-bin.000002 # Table_map 1 # table_id: 3 (test.t) -+master-bin.000002 # Write_rows_v1 1 # table_id: 3 flags: STMT_END_F +-master-bin.000002 # Table_map 1 # table_id: 4294967300 (test.t) +-master-bin.000002 # Write_rows_v1 1 # table_id: 4294967300 flags: STMT_END_F ++master-bin.000002 # Table_map 1 # table_id: 4294967294 (test.t) ++master-bin.000002 # Write_rows_v1 1 # table_id: 4294967294 flags: STMT_END_F master-bin.000002 # Query 1 # COMMIT connection slave; connection master; -- cgit v1.2.1