Commit dfbba3d2 authored by Sergei Golubchik's avatar Sergei Golubchik

cleanup: get rid of a SQL warning in a test

parent 92bde778
...@@ -167,7 +167,7 @@ while ($_dt_tables) ...@@ -167,7 +167,7 @@ while ($_dt_tables)
# the table to a file. # the table to a file.
--let $_dt_outfile= `SELECT @@datadir` --let $_dt_outfile= `SELECT @@datadir`
--let $_dt_outfile= $_dt_outfile/diff_table-$_dt_connection-$_dt_database-$_dt_table --let $_dt_outfile= $_dt_outfile/diff_table-$_dt_connection-$_dt_database-$_dt_table
eval SELECT * FROM $_dt_database.$_dt_table ORDER BY `$_dt_column_list` INTO OUTFILE '$_dt_outfile'; eval SELECT * INTO OUTFILE '$_dt_outfile' FROM $_dt_database.$_dt_table ORDER BY `$_dt_column_list`;
# Compare files. # Compare files.
if ($_dt_prev_outfile) if ($_dt_prev_outfile)
......
...@@ -21,10 +21,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig; ...@@ -21,10 +21,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig;
# Recreated table: test.t1 # Recreated table: test.t1
# Original table: test.t1_orig # Original table: test.t1_orig
include/diff_tables.inc [test.t1, test.t1_orig] include/diff_tables.inc [test.t1, test.t1_orig]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Cleanup # Cleanup
DROP TABLE test.t1, test.t1_orig; DROP TABLE test.t1, test.t1_orig;
# #
...@@ -50,10 +46,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig; ...@@ -50,10 +46,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig;
# Recreated table: test.t1 # Recreated table: test.t1
# Original table: test.t1_orig # Original table: test.t1_orig
include/diff_tables.inc [test.t1, test.t1_orig] include/diff_tables.inc [test.t1, test.t1_orig]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Cleanup # Cleanup
DROP TABLE test.t1, test.t1_orig; DROP TABLE test.t1, test.t1_orig;
# #
...@@ -72,10 +64,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig; ...@@ -72,10 +64,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig;
# Recreated table: test.t1 # Recreated table: test.t1
# Original table: test.t1_orig # Original table: test.t1_orig
include/diff_tables.inc [test.t1, test.t1_orig] include/diff_tables.inc [test.t1, test.t1_orig]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Cleanup # Cleanup
DROP TABLE test.t1, test.t1_orig; DROP TABLE test.t1, test.t1_orig;
# #
...@@ -95,10 +83,6 @@ ALTER TABLE test.t2 RENAME to test.t2_orig; ...@@ -95,10 +83,6 @@ ALTER TABLE test.t2 RENAME to test.t2_orig;
# Recreated table: test.t2 # Recreated table: test.t2
# Original table: test.t2_orig # Original table: test.t2_orig
include/diff_tables.inc [test.t2, test.t2_orig] include/diff_tables.inc [test.t2, test.t2_orig]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Cleanup # Cleanup
DROP TABLE test.t2, test.t2_orig; DROP TABLE test.t2, test.t2_orig;
DROP TABLE t1; DROP TABLE t1;
...@@ -117,10 +101,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig; ...@@ -117,10 +101,6 @@ ALTER TABLE test.t1 RENAME to test.t1_orig;
# Recreated table: test.t1 # Recreated table: test.t1
# Original table: test.t1_orig # Original table: test.t1_orig
include/diff_tables.inc [test.t1, test.t1_orig] include/diff_tables.inc [test.t1, test.t1_orig]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Cleanup # Cleanup
DROP TABLE test.t1, test.t1_orig; DROP TABLE test.t1, test.t1_orig;
# End tests # End tests
......
...@@ -38,10 +38,6 @@ where variable_name like 'Sort_merge_passes'; ...@@ -38,10 +38,6 @@ where variable_name like 'Sort_merge_passes';
variable_name case when variable_value > 0 then 'WITH PASSES' else 'NO PASSES' end variable_name case when variable_value > 0 then 'WITH PASSES' else 'NO PASSES' end
SORT_MERGE_PASSES WITH PASSES SORT_MERGE_PASSES WITH PASSES
include/diff_tables.inc [t21, t22] include/diff_tables.inc [t21, t22]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
drop table t21, t22; drop table t21, t22;
################################################################# #################################################################
# Try many cursors # Try many cursors
...@@ -76,10 +72,6 @@ where variable_name like 'Sort_merge_passes'; ...@@ -76,10 +72,6 @@ where variable_name like 'Sort_merge_passes';
variable_name case when variable_value > 0 then 'WITH PASSES' else 'NO PASSES' end variable_name case when variable_value > 0 then 'WITH PASSES' else 'NO PASSES' end
SORT_MERGE_PASSES WITH PASSES SORT_MERGE_PASSES WITH PASSES
include/diff_tables.inc [t21, t22] include/diff_tables.inc [t21, t22]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
drop table t21, t22; drop table t21, t22;
################################################################# #################################################################
# Try having cursors pointing at different IO_CACHE pages # Try having cursors pointing at different IO_CACHE pages
...@@ -113,10 +105,6 @@ where variable_name like 'Sort_merge_passes'; ...@@ -113,10 +105,6 @@ where variable_name like 'Sort_merge_passes';
variable_name case when variable_value > 0 then 'WITH PASSES' else 'NO PASSES' end variable_name case when variable_value > 0 then 'WITH PASSES' else 'NO PASSES' end
SORT_MERGE_PASSES WITH PASSES SORT_MERGE_PASSES WITH PASSES
include/diff_tables.inc [t21, t22] include/diff_tables.inc [t21, t22]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
drop table t21, t22; drop table t21, t22;
################################################################# #################################################################
drop table t10; drop table t10;
......
...@@ -53,10 +53,6 @@ include/start_slave.inc ...@@ -53,10 +53,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# 8. Clean up # 8. Clean up
connection master; connection master;
SET GLOBAL debug_dbug= ""; SET GLOBAL debug_dbug= "";
......
...@@ -244,10 +244,6 @@ include/start_slave.inc ...@@ -244,10 +244,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
DROP PROCEDURE p; DROP PROCEDURE p;
......
...@@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590] ...@@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590]
Got one of the listed errors Got one of the listed errors
include/wait_for_slave_sql_error_and_skip.inc [errno=1590] include/wait_for_slave_sql_error_and_skip.inc [errno=1590]
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 2 - BEGIN - IMPLICIT COMMIT by DDL # 2 - BEGIN - IMPLICIT COMMIT by DDL
######################################################################################## ########################################################################################
...@@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');; ...@@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');;
CREATE TABLE t5 (a int); CREATE TABLE t5 (a int);
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 3 - BEGIN - COMMIT # 3 - BEGIN - COMMIT
######################################################################################## ########################################################################################
...@@ -77,10 +69,6 @@ Got one of the listed errors ...@@ -77,10 +69,6 @@ Got one of the listed errors
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 4 - BEGIN - ROLLBACK # 4 - BEGIN - ROLLBACK
######################################################################################## ########################################################################################
...@@ -97,10 +85,6 @@ Warnings: ...@@ -97,10 +85,6 @@ Warnings:
Warning 1196 Some non-transactional changed tables couldn't be rolled back Warning 1196 Some non-transactional changed tables couldn't be rolled back
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 5 - PROCEDURE # 5 - PROCEDURE
######################################################################################## ########################################################################################
...@@ -127,10 +111,6 @@ Got one of the listed errors ...@@ -127,10 +111,6 @@ Got one of the listed errors
ROLLBACK; ROLLBACK;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 6 - XID # 6 - XID
######################################################################################## ########################################################################################
...@@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back ...@@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 7 - NON-TRANS TABLE # 7 - NON-TRANS TABLE
######################################################################################## ########################################################################################
...@@ -176,10 +152,6 @@ Got one of the listed errors ...@@ -176,10 +152,6 @@ Got one of the listed errors
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################## ########################################################################
# 8 - Bug#55375(Regression Bug) Transaction bigger than # 8 - Bug#55375(Regression Bug) Transaction bigger than
# max_binlog_cache_size crashes slave # max_binlog_cache_size crashes slave
......
...@@ -5,10 +5,6 @@ CREATE TABLE t1(i VARCHAR(20)); ...@@ -5,10 +5,6 @@ CREATE TABLE t1(i VARCHAR(20));
INSERT INTO t1 VALUES (0xFFFF); INSERT INTO t1 VALUES (0xFFFF);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
include/rpl_end.inc include/rpl_end.inc
...@@ -2,9 +2,5 @@ include/master-slave.inc ...@@ -2,9 +2,5 @@ include/master-slave.inc
[connection master] [connection master]
include/assert.inc [Assert that relay log space is close to the limit] include/assert.inc [Assert that relay log space is close to the limit]
include/diff_tables.inc [master:test.t1,slave:test.t1] include/diff_tables.inc [master:test.t1,slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
include/rpl_end.inc include/rpl_end.inc
...@@ -29,10 +29,6 @@ include/start_slave.inc ...@@ -29,10 +29,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
=====Corrupting the master.info=======; =====Corrupting the master.info=======;
connection slave; connection slave;
include/stop_slave.inc include/stop_slave.inc
...@@ -51,10 +47,6 @@ include/start_slave.inc ...@@ -51,10 +47,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
=====Clean up=======; =====Clean up=======;
connection master; connection master;
drop table t1; drop table t1;
......
...@@ -318,15 +318,7 @@ INSERT INTO t2 VALUES(4); ...@@ -318,15 +318,7 @@ INSERT INTO t2 VALUES(4);
FLUSH LOGS; FLUSH LOGS;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -334,15 +326,7 @@ connection slave; ...@@ -334,15 +326,7 @@ connection slave;
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
......
...@@ -45,10 +45,6 @@ include/start_slave.inc ...@@ -45,10 +45,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -43,10 +43,6 @@ Variable_name Value ...@@ -43,10 +43,6 @@ Variable_name Value
Binlog_cache_disk_use 1 Binlog_cache_disk_use 1
connection slave; connection slave;
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
begin; begin;
delete from t1; delete from t1;
...@@ -64,10 +60,6 @@ Variable_name Value ...@@ -64,10 +60,6 @@ Variable_name Value
Binlog_cache_disk_use 1 Binlog_cache_disk_use 1
connection slave; connection slave;
include/diff_tables.inc [master:test.t2, slave:test.t2] include/diff_tables.inc [master:test.t2, slave:test.t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
begin; begin;
delete from t2; delete from t2;
...@@ -85,10 +77,6 @@ Variable_name Value ...@@ -85,10 +77,6 @@ Variable_name Value
Binlog_cache_disk_use 1 Binlog_cache_disk_use 1
connection slave; connection slave;
include/diff_tables.inc [master:test.t3, slave:test.t3] include/diff_tables.inc [master:test.t3, slave:test.t3]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
begin; begin;
delete from t3; delete from t3;
...@@ -131,20 +119,8 @@ Variable_name Value ...@@ -131,20 +119,8 @@ Variable_name Value
Binlog_cache_disk_use 1 Binlog_cache_disk_use 1
connection slave; connection slave;
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:test.t2, slave:test.t2] include/diff_tables.inc [master:test.t2, slave:test.t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:test.t3, slave:test.t3] include/diff_tables.inc [master:test.t3, slave:test.t3]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
begin; begin;
delete from t1; delete from t1;
......
...@@ -18,10 +18,6 @@ master-bin.000001 # Query # # use `test`; /* 999999 --- */INSERT /*!INTO*/ /*!10 ...@@ -18,10 +18,6 @@ master-bin.000001 # Query # # use `test`; /* 999999 --- */INSERT /*!INTO*/ /*!10
master-bin.000001 # Query # # COMMIT master-bin.000001 # Query # # COMMIT
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Case 2: # Case 2:
# ----------------------------------------------------------------- # -----------------------------------------------------------------
...@@ -35,10 +31,6 @@ CREATE TABLE t1(c1 INT); ...@@ -35,10 +31,6 @@ CREATE TABLE t1(c1 INT);
EXECUTE stmt; EXECUTE stmt;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
SET @value=62; SET @value=62;
...@@ -71,10 +63,6 @@ master-bin.000001 # Query # # use `test`; INSERT INTO /* 999999 blabla */ t1 VAL ...@@ -71,10 +63,6 @@ master-bin.000001 # Query # # use `test`; INSERT INTO /* 999999 blabla */ t1 VAL
master-bin.000001 # Query # # COMMIT master-bin.000001 # Query # # COMMIT
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# Case 3: # Case 3:
# ----------------------------------------------------------------- # -----------------------------------------------------------------
......
...@@ -53,10 +53,6 @@ include/start_slave.inc ...@@ -53,10 +53,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
# 8. Clean up # 8. Clean up
connection master; connection master;
SET GLOBAL debug_dbug= ""; SET GLOBAL debug_dbug= "";
......
...@@ -25,10 +25,6 @@ INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; ...@@ -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.] include/assert.inc [Count of elements in t1 should be 6.]
connection slave; connection slave;
include/diff_tables.inc [master:test.t1 , slave:test.t1] include/diff_tables.inc [master:test.t1 , slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; 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.] 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; ...@@ -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.] include/assert.inc [Count of elements in t1 should be 6.]
connection slave; connection slave;
include/diff_tables.inc [master:test.t1 , slave:test.t1] include/diff_tables.inc [master:test.t1 , slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
INSERT IGNORE INTO t1 SELECT NULL, t2.b FROM t2 ORDER BY t2.a; 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.] include/assert.inc [Count of elements in t1 should be 6.]
......
...@@ -119,10 +119,6 @@ connection master; ...@@ -119,10 +119,6 @@ connection master;
connection slave; connection slave;
use b48297_db1; use b48297_db1;
include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1] include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP DATABASE b48297_db1; DROP DATABASE b48297_db1;
DROP DATABASE b42897_db2; DROP DATABASE b42897_db2;
......
...@@ -244,10 +244,6 @@ include/start_slave.inc ...@@ -244,10 +244,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
DROP PROCEDURE p; DROP PROCEDURE p;
......
...@@ -10,10 +10,6 @@ FLUSH LOGS; ...@@ -10,10 +10,6 @@ FLUSH LOGS;
SET DEBUG_SYNC= 'now SIGNAL signal.rotate_finished'; SET DEBUG_SYNC= 'now SIGNAL signal.rotate_finished';
connection slave; connection slave;
include/diff_tables.inc [master:t,slave:t] include/diff_tables.inc [master:t,slave:t]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
SET @@GLOBAL.DEBUG_DBUG= @debug_saved; SET @@GLOBAL.DEBUG_DBUG= @debug_saved;
SET DEBUG_SYNC= 'RESET'; SET DEBUG_SYNC= 'RESET';
......
...@@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590] ...@@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590]
Got one of the listed errors Got one of the listed errors
include/wait_for_slave_sql_error_and_skip.inc [errno=1590] include/wait_for_slave_sql_error_and_skip.inc [errno=1590]
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 2 - BEGIN - IMPLICIT COMMIT by DDL # 2 - BEGIN - IMPLICIT COMMIT by DDL
######################################################################################## ########################################################################################
...@@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');; ...@@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');;
CREATE TABLE t5 (a int); CREATE TABLE t5 (a int);
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 3 - BEGIN - COMMIT # 3 - BEGIN - COMMIT
######################################################################################## ########################################################################################
...@@ -77,10 +69,6 @@ Got one of the listed errors ...@@ -77,10 +69,6 @@ Got one of the listed errors
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 4 - BEGIN - ROLLBACK # 4 - BEGIN - ROLLBACK
######################################################################################## ########################################################################################
...@@ -97,10 +85,6 @@ Warnings: ...@@ -97,10 +85,6 @@ Warnings:
Warning 1196 Some non-transactional changed tables couldn't be rolled back Warning 1196 Some non-transactional changed tables couldn't be rolled back
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 5 - PROCEDURE # 5 - PROCEDURE
######################################################################################## ########################################################################################
...@@ -127,10 +111,6 @@ Got one of the listed errors ...@@ -127,10 +111,6 @@ Got one of the listed errors
ROLLBACK; ROLLBACK;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 6 - XID # 6 - XID
######################################################################################## ########################################################################################
...@@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back ...@@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 7 - NON-TRANS TABLE # 7 - NON-TRANS TABLE
######################################################################################## ########################################################################################
...@@ -176,10 +152,6 @@ Got one of the listed errors ...@@ -176,10 +152,6 @@ Got one of the listed errors
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################## ########################################################################
# 8 - Bug#55375(Regression Bug) Transaction bigger than # 8 - Bug#55375(Regression Bug) Transaction bigger than
# max_binlog_cache_size crashes slave # max_binlog_cache_size crashes slave
......
...@@ -332,10 +332,6 @@ SET AUTOCOMMIT= 1; ...@@ -332,10 +332,6 @@ SET AUTOCOMMIT= 1;
################################################################################### ###################################################################################
connection slave; connection slave;
include/diff_tables.inc [master:tt_1,slave:tt_1] include/diff_tables.inc [master:tt_1,slave:tt_1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
################################################################################### ###################################################################################
# CLEAN # CLEAN
################################################################################### ###################################################################################
......
...@@ -22,10 +22,6 @@ INSERT INTO t1 VALUES (RAND()); ...@@ -22,10 +22,6 @@ INSERT INTO t1 VALUES (RAND());
INSERT INTO t1 VALUES (LAST_INSERT_ID()); INSERT INTO t1 VALUES (LAST_INSERT_ID());
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
include/rpl_end.inc include/rpl_end.inc
...@@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5); ...@@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5);
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
TABLES t2 and t3 must be different. TABLES t2 and t3 must be different.
connection master; connection master;
SELECT * FROM t3 ORDER BY a; SELECT * FROM t3 ORDER BY a;
...@@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300); ...@@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300);
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
************* CLEANING ************* ************* CLEANING *************
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
...@@ -151,10 +139,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, b'00'); ...@@ -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. TABLES t1 and t2 must be equal otherwise an error will be thrown.
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5); ...@@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5);
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
TABLES t2 and t3 must be different. TABLES t2 and t3 must be different.
connection master; connection master;
SELECT * FROM t3 ORDER BY a; SELECT * FROM t3 ORDER BY a;
...@@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300); ...@@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300);
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
************* CLEANING ************* ************* CLEANING *************
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
...@@ -151,10 +139,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, b'00'); ...@@ -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. TABLES t1 and t2 must be equal otherwise an error will be thrown.
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -31,10 +31,6 @@ include/start_slave.inc ...@@ -31,10 +31,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -535,20 +535,12 @@ INSERT INTO t1 VALUES (1, "", 1); ...@@ -535,20 +535,12 @@ INSERT INTO t1 VALUES (1, "", 1);
INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2); INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
[expecting slave to replicate correctly] [expecting slave to replicate correctly]
connection master; connection master;
INSERT INTO t2 VALUES (1, "", 1); INSERT INTO t2 VALUES (1, "", 1);
INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2); INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; 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"); 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); ...@@ -562,10 +554,6 @@ INSERT INTO t4 VALUES (1, "", 1);
INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2); INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t4, slave:t4] include/diff_tables.inc [master:t4, slave:t4]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
[expecting slave to stop] [expecting slave to stop]
connection master; connection master;
INSERT INTO t5 VALUES (1, "", 1); INSERT INTO t5 VALUES (1, "", 1);
...@@ -588,10 +576,6 @@ INSERT INTO t7 VALUES (1, "", 1); ...@@ -588,10 +576,6 @@ INSERT INTO t7 VALUES (1, "", 1);
INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2); INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t7, slave:t7] include/diff_tables.inc [master:t7, slave:t7]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1, t2, t3, t4, t5, t6, t7; drop table t1, t2, t3, t4, t5, t6, t7;
connection slave; connection slave;
...@@ -603,10 +587,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY' ...@@ -603,10 +587,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY'
INSERT INTO t1 VALUES (4); INSERT INTO t1 VALUES (4);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
...@@ -665,10 +645,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6; ...@@ -665,10 +645,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6;
connection slave; connection slave;
*** results: t2 must be consistent **** *** results: t2 must be consistent ****
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1, t2; DROP TABLE t1, t2;
EOF OF TESTS EOF OF TESTS
...@@ -688,10 +664,6 @@ UPDATE t1 SET a = 0 WHERE a < 4; ...@@ -688,10 +664,6 @@ UPDATE t1 SET a = 0 WHERE a < 4;
UPDATE t1 SET a = 8 WHERE a < 5; UPDATE t1 SET a = 8 WHERE a < 5;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
...@@ -739,10 +711,6 @@ INSERT INTO t1 ( a ) VALUES ( 1 ); ...@@ -739,10 +711,6 @@ INSERT INTO t1 ( a ) VALUES ( 1 );
UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3; UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
......
...@@ -540,20 +540,12 @@ INSERT INTO t1 VALUES (1, "", 1); ...@@ -540,20 +540,12 @@ INSERT INTO t1 VALUES (1, "", 1);
INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2); INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
[expecting slave to replicate correctly] [expecting slave to replicate correctly]
connection master; connection master;
INSERT INTO t2 VALUES (1, "", 1); INSERT INTO t2 VALUES (1, "", 1);
INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2); INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; 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"); 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); ...@@ -567,10 +559,6 @@ INSERT INTO t4 VALUES (1, "", 1);
INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2); INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t4, slave:t4] include/diff_tables.inc [master:t4, slave:t4]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
[expecting slave to stop] [expecting slave to stop]
connection master; connection master;
INSERT INTO t5 VALUES (1, "", 1); INSERT INTO t5 VALUES (1, "", 1);
...@@ -593,10 +581,6 @@ INSERT INTO t7 VALUES (1, "", 1); ...@@ -593,10 +581,6 @@ INSERT INTO t7 VALUES (1, "", 1);
INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2); INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t7, slave:t7] include/diff_tables.inc [master:t7, slave:t7]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1, t2, t3, t4, t5, t6, t7; drop table t1, t2, t3, t4, t5, t6, t7;
connection slave; connection slave;
...@@ -608,10 +592,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY' ...@@ -608,10 +592,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY'
INSERT INTO t1 VALUES (4); INSERT INTO t1 VALUES (4);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
...@@ -670,10 +650,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6; ...@@ -670,10 +650,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6;
connection slave; connection slave;
*** results: t2 must be consistent **** *** results: t2 must be consistent ****
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1, t2; DROP TABLE t1, t2;
EOF OF TESTS EOF OF TESTS
...@@ -693,10 +669,6 @@ UPDATE t1 SET a = 0 WHERE a < 4; ...@@ -693,10 +669,6 @@ UPDATE t1 SET a = 0 WHERE a < 4;
UPDATE t1 SET a = 8 WHERE a < 5; UPDATE t1 SET a = 8 WHERE a < 5;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
...@@ -748,10 +720,6 @@ UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3; ...@@ -748,10 +720,6 @@ UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3;
connection slave; connection slave;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
......
...@@ -34,10 +34,6 @@ INSERT INTO t1(c1,c2) VALUES(1,2); ...@@ -34,10 +34,6 @@ INSERT INTO t1(c1,c2) VALUES(1,2);
UPDATE t1 SET c1=1000 WHERE c2=2; UPDATE t1 SET c1=1000 WHERE c2=2;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -417,10 +417,6 @@ SET AUTOCOMMIT= 1; ...@@ -417,10 +417,6 @@ SET AUTOCOMMIT= 1;
################################################################################### ###################################################################################
connection slave; connection slave;
include/diff_tables.inc [master:tt_1,slave:tt_1] include/diff_tables.inc [master:tt_1,slave:tt_1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
################################################################################### ###################################################################################
# CLEAN # CLEAN
################################################################################### ###################################################################################
......
...@@ -135,10 +135,6 @@ connection master; ...@@ -135,10 +135,6 @@ connection master;
connection slave; connection slave;
use b48297_db1; use b48297_db1;
include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1] include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP DATABASE b48297_db1; DROP DATABASE b48297_db1;
DROP DATABASE b42897_db2; DROP DATABASE b42897_db2;
......
...@@ -10,30 +10,14 @@ ALTER TABLE tt1_merge ENGINE=MERGE UNION (t2, t1); ...@@ -10,30 +10,14 @@ ALTER TABLE tt1_merge ENGINE=MERGE UNION (t2, t1);
CREATE TABLE t1_merge LIKE tt1_merge; CREATE TABLE t1_merge LIKE tt1_merge;
connection slave; connection slave;
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:test.t2, slave:test.t2] include/diff_tables.inc [master:test.t2, slave:test.t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
UPDATE t1_merge SET a=10 WHERE a=1; UPDATE t1_merge SET a=10 WHERE a=1;
DELETE FROM t1_merge WHERE a=10; DELETE FROM t1_merge WHERE a=10;
connection slave; connection slave;
connection master; connection master;
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:test.t2, slave:test.t2] include/diff_tables.inc [master:test.t2, slave:test.t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE t1_merge, t1, t2; DROP TABLE t1_merge, t1, t2;
connection slave; connection slave;
include/rpl_end.inc include/rpl_end.inc
...@@ -9,10 +9,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); ...@@ -9,10 +9,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 );
UPDATE IGNORE t1 SET c5 = 'a'; UPDATE IGNORE t1 SET c5 = 'a';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); ...@@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 );
UPDATE IGNORE t1 SET c5 = 'a'; UPDATE IGNORE t1 SET c5 = 'a';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -42,10 +34,6 @@ INSERT INTO t1(c1) VALUES (NULL); ...@@ -42,10 +34,6 @@ INSERT INTO t1(c1) VALUES (NULL);
UPDATE t1 SET c1= 0; UPDATE t1 SET c1= 0;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -10,10 +10,6 @@ INSERT INTO t1(c1,c2) VALUES (NULL, b'1'); ...@@ -10,10 +10,6 @@ INSERT INTO t1(c1,c2) VALUES (NULL, b'1');
UPDATE t1 SET c1= 0; UPDATE t1 SET c1= 0;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); ...@@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 );
UPDATE IGNORE t1 SET c5 = 'a'; UPDATE IGNORE t1 SET c5 = 'a';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -43,10 +35,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); ...@@ -43,10 +35,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 );
UPDATE IGNORE t1 SET c5 = 'a'; UPDATE IGNORE t1 SET c5 = 'a';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -59,10 +47,6 @@ INSERT INTO t1(c1) VALUES (NULL); ...@@ -59,10 +47,6 @@ INSERT INTO t1(c1) VALUES (NULL);
UPDATE t1 SET c1= 0; UPDATE t1 SET c1= 0;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -158,10 +158,6 @@ connection slave; ...@@ -158,10 +158,6 @@ connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match ### assertion: the slave replicated event successfully and tables match
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE `t1`; DROP TABLE `t1`;
connection master; connection master;
connection slave; connection slave;
...@@ -186,91 +182,51 @@ connection master; ...@@ -186,91 +182,51 @@ connection master;
FLUSH LOGS; FLUSH LOGS;
### assertion: the slave replicated event successfully and tables match for t10 ### assertion: the slave replicated event successfully and tables match for t10
include/diff_tables.inc [master:t10, slave:t10] include/diff_tables.inc [master:t10, slave:t10]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t9 ### assertion: the slave replicated event successfully and tables match for t9
include/diff_tables.inc [master:t9, slave:t9] include/diff_tables.inc [master:t9, slave:t9]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t8 ### assertion: the slave replicated event successfully and tables match for t8
include/diff_tables.inc [master:t8, slave:t8] include/diff_tables.inc [master:t8, slave:t8]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t7 ### assertion: the slave replicated event successfully and tables match for t7
include/diff_tables.inc [master:t7, slave:t7] include/diff_tables.inc [master:t7, slave:t7]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t6 ### assertion: the slave replicated event successfully and tables match for t6
include/diff_tables.inc [master:t6, slave:t6] include/diff_tables.inc [master:t6, slave:t6]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t5 ### assertion: the slave replicated event successfully and tables match for t5
include/diff_tables.inc [master:t5, slave:t5] include/diff_tables.inc [master:t5, slave:t5]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t4 ### assertion: the slave replicated event successfully and tables match for t4
include/diff_tables.inc [master:t4, slave:t4] include/diff_tables.inc [master:t4, slave:t4]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t3 ### assertion: the slave replicated event successfully and tables match for t3
include/diff_tables.inc [master:t3, slave:t3] include/diff_tables.inc [master:t3, slave:t3]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t2 ### assertion: the slave replicated event successfully and tables match for t2
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
### assertion: the slave replicated event successfully and tables match for t1 ### assertion: the slave replicated event successfully and tables match for t1
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
connection slave; connection slave;
connection master; connection master;
......
...@@ -15,10 +15,6 @@ hex(c1) 006100620063 ...@@ -15,10 +15,6 @@ hex(c1) 006100620063
c1 ola c1 ola
hex(c1) 006F006C0061 hex(c1) 006F006C0061
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
include/rpl_end.inc include/rpl_end.inc
...@@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 ); ...@@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 );
UPDATE t1 SET c1=NULL where c2=1; UPDATE t1 SET c1=NULL where c2=1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DELETE FROM t1 WHERE c2=1 LIMIT 1; DELETE FROM t1 WHERE c2=1 LIMIT 1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -32,18 +24,10 @@ w ...@@ -32,18 +24,10 @@ w
UPDATE t1 SET c1=NULL WHERE c1='w'; UPDATE t1 SET c1=NULL WHERE c1='w';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DELETE FROM t1 LIMIT 2; DELETE FROM t1 LIMIT 2;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 ); ...@@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 );
UPDATE t1 SET c1=NULL where c2=1; UPDATE t1 SET c1=NULL where c2=1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DELETE FROM t1 WHERE c2=1 LIMIT 1; DELETE FROM t1 WHERE c2=1 LIMIT 1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -32,18 +24,10 @@ w ...@@ -32,18 +24,10 @@ w
UPDATE t1 SET c1=NULL WHERE c1='w'; UPDATE t1 SET c1=NULL WHERE c1='w';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DELETE FROM t1 LIMIT 2; DELETE FROM t1 LIMIT 2;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -12,15 +12,7 @@ load data infile '../../std_data/rpl_loaddata.dat' into table t2; ...@@ -12,15 +12,7 @@ load data infile '../../std_data/rpl_loaddata.dat' into table t2;
commit; commit;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
drop table t2; drop table t2;
......
...@@ -5,10 +5,6 @@ CREATE TABLE t1(i VARCHAR(20)); ...@@ -5,10 +5,6 @@ CREATE TABLE t1(i VARCHAR(20));
INSERT INTO t1 VALUES (0xFFFF); INSERT INTO t1 VALUES (0xFFFF);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
include/rpl_end.inc include/rpl_end.inc
...@@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590] ...@@ -23,10 +23,6 @@ include/wait_for_slave_sql_error_and_skip.inc [errno=1590]
Got one of the listed errors Got one of the listed errors
include/wait_for_slave_sql_error_and_skip.inc [errno=1590] include/wait_for_slave_sql_error_and_skip.inc [errno=1590]
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 2 - BEGIN - IMPLICIT COMMIT by DDL # 2 - BEGIN - IMPLICIT COMMIT by DDL
######################################################################################## ########################################################################################
...@@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');; ...@@ -59,10 +55,6 @@ INSERT INTO t1 (a, data) VALUES (29, 's');;
CREATE TABLE t5 (a int); CREATE TABLE t5 (a int);
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 3 - BEGIN - COMMIT # 3 - BEGIN - COMMIT
######################################################################################## ########################################################################################
...@@ -77,10 +69,6 @@ Got one of the listed errors ...@@ -77,10 +69,6 @@ Got one of the listed errors
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 4 - BEGIN - ROLLBACK # 4 - BEGIN - ROLLBACK
######################################################################################## ########################################################################################
...@@ -97,10 +85,6 @@ Warnings: ...@@ -97,10 +85,6 @@ Warnings:
Warning 1196 Some non-transactional changed tables couldn't be rolled back Warning 1196 Some non-transactional changed tables couldn't be rolled back
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 5 - PROCEDURE # 5 - PROCEDURE
######################################################################################## ########################################################################################
...@@ -127,10 +111,6 @@ Got one of the listed errors ...@@ -127,10 +111,6 @@ Got one of the listed errors
ROLLBACK; ROLLBACK;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 6 - XID # 6 - XID
######################################################################################## ########################################################################################
...@@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back ...@@ -151,10 +131,6 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################################## ########################################################################################
# 7 - NON-TRANS TABLE # 7 - NON-TRANS TABLE
######################################################################################## ########################################################################################
...@@ -176,10 +152,6 @@ Got one of the listed errors ...@@ -176,10 +152,6 @@ Got one of the listed errors
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
######################################################################## ########################################################################
# 8 - Bug#55375(Regression Bug) Transaction bigger than # 8 - Bug#55375(Regression Bug) Transaction bigger than
# max_binlog_cache_size crashes slave # max_binlog_cache_size crashes slave
......
...@@ -332,10 +332,6 @@ SET AUTOCOMMIT= 1; ...@@ -332,10 +332,6 @@ SET AUTOCOMMIT= 1;
################################################################################### ###################################################################################
connection slave; connection slave;
include/diff_tables.inc [master:tt_1,slave:tt_1] include/diff_tables.inc [master:tt_1,slave:tt_1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
################################################################################### ###################################################################################
# CLEAN # CLEAN
################################################################################### ###################################################################################
......
...@@ -136,10 +136,6 @@ connection master; ...@@ -136,10 +136,6 @@ connection master;
connection slave; connection slave;
use b48297_db1; use b48297_db1;
include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1] include/diff_tables.inc [master:b48297_db1.t1, slave:b48297_db1.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP DATABASE b48297_db1; DROP DATABASE b48297_db1;
DROP DATABASE b42897_db2; DROP DATABASE b42897_db2;
......
...@@ -2,9 +2,5 @@ include/master-slave.inc ...@@ -2,9 +2,5 @@ include/master-slave.inc
[connection master] [connection master]
include/assert.inc [Assert that relay log space is close to the limit] include/assert.inc [Assert that relay log space is close to the limit]
include/diff_tables.inc [master:test.t1,slave:test.t1] include/diff_tables.inc [master:test.t1,slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
include/rpl_end.inc include/rpl_end.inc
...@@ -221,10 +221,6 @@ SET sql_mode = DEFAULT; ...@@ -221,10 +221,6 @@ SET sql_mode = DEFAULT;
connection slave; connection slave;
## assertion: master and slave tables are in sync ## assertion: master and slave tables are in sync
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TRIGGER tr1; DROP TRIGGER tr1;
DROP TABLE t1; DROP TABLE t1;
......
...@@ -40,10 +40,6 @@ include/wait_for_slave_sql_to_stop.inc ...@@ -40,10 +40,6 @@ include/wait_for_slave_sql_to_stop.inc
# Slave should stop after the transaction has committed. # Slave should stop after the transaction has committed.
# So t1 on master is same to t1 on slave. # So t1 on master is same to t1 on slave.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
START SLAVE SQL_THREAD; START SLAVE SQL_THREAD;
include/wait_for_slave_sql_to_start.inc include/wait_for_slave_sql_to_start.inc
...@@ -72,10 +68,6 @@ include/wait_for_slave_sql_to_stop.inc ...@@ -72,10 +68,6 @@ include/wait_for_slave_sql_to_stop.inc
# Slave should stop after the transaction has committed. # Slave should stop after the transaction has committed.
# So t1 on master is same to t1 on slave. # So t1 on master is same to t1 on slave.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
START SLAVE SQL_THREAD; START SLAVE SQL_THREAD;
include/wait_for_slave_sql_to_start.inc include/wait_for_slave_sql_to_start.inc
......
...@@ -29,10 +29,6 @@ include/start_slave.inc ...@@ -29,10 +29,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
=====Corrupting the master.info=======; =====Corrupting the master.info=======;
connection slave; connection slave;
include/stop_slave.inc include/stop_slave.inc
...@@ -51,10 +47,6 @@ include/start_slave.inc ...@@ -51,10 +47,6 @@ include/start_slave.inc
connection master; connection master;
connection slave; connection slave;
include/diff_tables.inc [master:t1,slave:t1] include/diff_tables.inc [master:t1,slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
=====Clean up=======; =====Clean up=======;
connection master; connection master;
drop table t1; drop table t1;
......
...@@ -134,10 +134,6 @@ master-bin.000001 # Query # # COMMIT ...@@ -134,10 +134,6 @@ master-bin.000001 # Query # # COMMIT
connection slave; connection slave;
# Compare the base table. # Compare the base table.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
......
...@@ -1097,15 +1097,7 @@ Warnings: ...@@ -1097,15 +1097,7 @@ Warnings:
Warning 1196 Some non-transactional changed tables couldn't be rolled back Warning 1196 Some non-transactional changed tables couldn't be rolled back
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:log, slave:log] include/diff_tables.inc [master:log, slave:log]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1, log; drop table t1, log;
connection slave; connection slave;
......
...@@ -9,10 +9,6 @@ connection master; ...@@ -9,10 +9,6 @@ connection master;
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Test using a table with delete triggers ==== ==== Test using a table with delete triggers ====
connection master; connection master;
SET @count := 1; SET @count := 1;
...@@ -23,10 +19,6 @@ connection master; ...@@ -23,10 +19,6 @@ connection master;
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
connection slave; connection slave;
...@@ -39,10 +31,6 @@ connection master; ...@@ -39,10 +31,6 @@ connection master;
DELETE FROM t1; DELETE FROM t1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Test using a table with delete triggers ==== ==== Test using a table with delete triggers ====
connection master; connection master;
SET @count := 1; SET @count := 1;
...@@ -53,10 +41,6 @@ connection master; ...@@ -53,10 +41,6 @@ connection master;
DELETE FROM t1; DELETE FROM t1;
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
connection slave; connection slave;
......
...@@ -9,10 +9,6 @@ connection master; ...@@ -9,10 +9,6 @@ connection master;
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Test using a table with delete triggers ==== ==== Test using a table with delete triggers ====
connection master; connection master;
SET @count := 1; SET @count := 1;
...@@ -23,10 +19,6 @@ connection master; ...@@ -23,10 +19,6 @@ connection master;
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
connection slave; connection slave;
...@@ -39,10 +31,6 @@ connection master; ...@@ -39,10 +31,6 @@ connection master;
DELETE FROM t1; DELETE FROM t1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Test using a table with delete triggers ==== ==== Test using a table with delete triggers ====
connection master; connection master;
SET @count := 1; SET @count := 1;
...@@ -53,10 +41,6 @@ connection master; ...@@ -53,10 +41,6 @@ connection master;
DELETE FROM t1; DELETE FROM t1;
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
connection slave; connection slave;
......
...@@ -8,10 +8,6 @@ CREATE TABLE t1(b1 BIT(1), b2 BIT(2), b3 BIT(3)) ENGINE=InnoDB; ...@@ -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'); INSERT INTO t1 VALUES (b'0', b'01', b'101');
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -16,15 +16,7 @@ UNLOCK TABLES; ...@@ -16,15 +16,7 @@ UNLOCK TABLES;
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
CREATE TABLE t1(i INT) ENGINE=INNODB; CREATE TABLE t1(i INT) ENGINE=INNODB;
...@@ -41,15 +33,7 @@ UNLOCK TABLES; ...@@ -41,15 +33,7 @@ UNLOCK TABLES;
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
CREATE TABLE t1(i int, id INT AUTO_INCREMENT, PRIMARY KEY (i, id)) ENGINE=MYISAM; CREATE TABLE t1(i int, id INT AUTO_INCREMENT, PRIMARY KEY (i, id)) ENGINE=MYISAM;
...@@ -61,10 +45,6 @@ UNLOCK TABLES; ...@@ -61,10 +45,6 @@ UNLOCK TABLES;
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
CREATE TABLE t1(i INT, j INT, UNIQUE KEY(i), UNIQUE KEY(j)) ENGINE=INNODB; CREATE TABLE t1(i INT, j INT, UNIQUE KEY(i), UNIQUE KEY(j)) ENGINE=INNODB;
...@@ -76,10 +56,6 @@ UNLOCK TABLES; ...@@ -76,10 +56,6 @@ UNLOCK TABLES;
COMMIT; COMMIT;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
include/rpl_end.inc include/rpl_end.inc
...@@ -573,26 +573,6 @@ id truth num text ...@@ -573,26 +573,6 @@ id truth num text
32 NULL NULL Centrum 32 NULL NULL Centrum
connection slave; 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] 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 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Clean up ==== ==== Clean up ====
connection master; connection master;
DROP PROCEDURE proc; DROP PROCEDURE proc;
......
...@@ -488,26 +488,6 @@ id num text ...@@ -488,26 +488,6 @@ id num text
58 NULL 1717 58 NULL 1717
connection slave; 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] 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 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Clean up ==== ==== Clean up ====
connection master; connection master;
DROP PROCEDURE proc; DROP PROCEDURE proc;
......
...@@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5); ...@@ -46,15 +46,7 @@ INSERT INTO t4(a) VALUES (5);
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
TABLES t2 and t3 must be different. TABLES t2 and t3 must be different.
connection master; connection master;
SELECT * FROM t3 ORDER BY a; SELECT * FROM t3 ORDER BY a;
...@@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300); ...@@ -95,10 +87,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, 300);
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
************* CLEANING ************* ************* CLEANING *************
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
...@@ -151,10 +139,6 @@ REPLACE INTO t1(a,b,c) VALUES (2, NULL, b'00'); ...@@ -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. TABLES t1 and t2 must be equal otherwise an error will be thrown.
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -14,10 +14,6 @@ connection master; ...@@ -14,10 +14,6 @@ connection master;
connection slave; connection slave;
connection master; connection master;
include/diff_tables.inc [master:test.t, slave:test.t] include/diff_tables.inc [master:test.t, slave:test.t]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
delete from t where a=2; delete from t where a=2;
select unix_timestamp() into @tstart; select unix_timestamp() into @tstart;
...@@ -29,10 +25,6 @@ select @tend-@tstart <= 5; ...@@ -29,10 +25,6 @@ select @tend-@tstart <= 5;
@tend-@tstart <= 5 @tend-@tstart <= 5
1 1
include/diff_tables.inc [master:test.t, slave:test.t] include/diff_tables.inc [master:test.t, slave:test.t]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table if exists t; drop table if exists t;
connection slave; connection slave;
......
...@@ -14,10 +14,6 @@ connection master; ...@@ -14,10 +14,6 @@ connection master;
connection slave; connection slave;
connection master; connection master;
include/diff_tables.inc [master:test.t, slave:test.t] include/diff_tables.inc [master:test.t, slave:test.t]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
update t set b=b+1 where a=2; update t set b=b+1 where a=2;
update t set b=b+2 where a=1; update t set b=b+2 where a=1;
...@@ -39,10 +35,6 @@ a b ...@@ -39,10 +35,6 @@ a b
3 5 3 5
4 3 4 3
include/diff_tables.inc [master:test.t, slave:test.t] include/diff_tables.inc [master:test.t, slave:test.t]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table if exists t; drop table if exists t;
connection slave; connection slave;
......
...@@ -15,10 +15,6 @@ connection master; ...@@ -15,10 +15,6 @@ connection master;
connection slave; connection slave;
connection master; connection master;
include/diff_tables.inc [master:test.t, slave:test.t] include/diff_tables.inc [master:test.t, slave:test.t]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table if exists t; drop table if exists t;
connection slave; connection slave;
......
...@@ -540,20 +540,12 @@ INSERT INTO t1 VALUES (1, "", 1); ...@@ -540,20 +540,12 @@ INSERT INTO t1 VALUES (1, "", 1);
INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2); INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
[expecting slave to replicate correctly] [expecting slave to replicate correctly]
connection master; connection master;
INSERT INTO t2 VALUES (1, "", 1); INSERT INTO t2 VALUES (1, "", 1);
INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2); INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection slave; connection slave;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; 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"); 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); ...@@ -567,10 +559,6 @@ INSERT INTO t4 VALUES (1, "", 1);
INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2); INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t4, slave:t4] include/diff_tables.inc [master:t4, slave:t4]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
[expecting slave to stop] [expecting slave to stop]
connection master; connection master;
INSERT INTO t5 VALUES (1, "", 1); INSERT INTO t5 VALUES (1, "", 1);
...@@ -593,10 +581,6 @@ INSERT INTO t7 VALUES (1, "", 1); ...@@ -593,10 +581,6 @@ INSERT INTO t7 VALUES (1, "", 1);
INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2); INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2);
connection slave; connection slave;
include/diff_tables.inc [master:t7, slave:t7] include/diff_tables.inc [master:t7, slave:t7]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1, t2, t3, t4, t5, t6, t7; drop table t1, t2, t3, t4, t5, t6, t7;
connection slave; connection slave;
...@@ -608,10 +592,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY' ...@@ -608,10 +592,6 @@ ERROR 23000: Duplicate entry '10' for key 'PRIMARY'
INSERT INTO t1 VALUES (4); INSERT INTO t1 VALUES (4);
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
...@@ -670,10 +650,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6; ...@@ -670,10 +650,6 @@ UPDATE t1 SET `int_key` = 4 ORDER BY `pk` LIMIT 6;
connection slave; connection slave;
*** results: t2 must be consistent **** *** results: t2 must be consistent ****
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1, t2; DROP TABLE t1, t2;
EOF OF TESTS EOF OF TESTS
...@@ -693,10 +669,6 @@ UPDATE t1 SET a = 0 WHERE a < 4; ...@@ -693,10 +669,6 @@ UPDATE t1 SET a = 0 WHERE a < 4;
UPDATE t1 SET a = 8 WHERE a < 5; UPDATE t1 SET a = 8 WHERE a < 5;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
...@@ -748,10 +720,6 @@ UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3; ...@@ -748,10 +720,6 @@ UPDATE IGNORE t1 SET a = 9 WHERE a < 5 LIMIT 3;
connection slave; connection slave;
SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions; SET GLOBAL SLAVE_TYPE_CONVERSIONS = @saved_slave_type_conversions;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1; drop table t1;
connection slave; connection slave;
......
...@@ -9,10 +9,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); ...@@ -9,10 +9,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 );
UPDATE IGNORE t1 SET c5 = 'a'; UPDATE IGNORE t1 SET c5 = 'a';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 ); ...@@ -26,10 +22,6 @@ INSERT INTO t1 ( c5, c6 ) VALUES ( NULL, 35 );
UPDATE IGNORE t1 SET c5 = 'a'; UPDATE IGNORE t1 SET c5 = 'a';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -42,10 +34,6 @@ INSERT INTO t1(c1) VALUES (NULL); ...@@ -42,10 +34,6 @@ INSERT INTO t1(c1) VALUES (NULL);
UPDATE t1 SET c1= 0; UPDATE t1 SET c1= 0;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 ); ...@@ -7,18 +7,10 @@ INSERT INTO `t1` VALUES ( 1, 1 );
UPDATE t1 SET c1=NULL where c2=1; UPDATE t1 SET c1=NULL where c2=1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DELETE FROM t1 WHERE c2=1 LIMIT 1; DELETE FROM t1 WHERE c2=1 LIMIT 1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
...@@ -32,18 +24,10 @@ w ...@@ -32,18 +24,10 @@ w
UPDATE t1 SET c1=NULL WHERE c1='w'; UPDATE t1 SET c1=NULL WHERE c1='w';
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DELETE FROM t1 LIMIT 2; DELETE FROM t1 LIMIT 2;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -9,10 +9,6 @@ connection master; ...@@ -9,10 +9,6 @@ connection master;
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Test using a table with delete triggers ==== ==== Test using a table with delete triggers ====
connection master; connection master;
SET @count := 1; SET @count := 1;
...@@ -23,10 +19,6 @@ connection master; ...@@ -23,10 +19,6 @@ connection master;
TRUNCATE TABLE t1; TRUNCATE TABLE t1;
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
connection slave; connection slave;
...@@ -39,10 +31,6 @@ connection master; ...@@ -39,10 +31,6 @@ connection master;
DELETE FROM t1; DELETE FROM t1;
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
==== Test using a table with delete triggers ==== ==== Test using a table with delete triggers ====
connection master; connection master;
SET @count := 1; SET @count := 1;
...@@ -53,10 +41,6 @@ connection master; ...@@ -53,10 +41,6 @@ connection master;
DELETE FROM t1; DELETE FROM t1;
connection slave; connection slave;
include/diff_tables.inc [master:t2, slave:t2] include/diff_tables.inc [master:t2, slave:t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1,t2; DROP TABLE t1,t2;
connection slave; connection slave;
......
...@@ -8,10 +8,6 @@ CREATE TABLE t1(b1 BIT(1), b2 BIT(2), b3 BIT(3)) ENGINE=TokuDB; ...@@ -8,10 +8,6 @@ CREATE TABLE t1(b1 BIT(1), b2 BIT(2), b3 BIT(3)) ENGINE=TokuDB;
INSERT INTO t1 VALUES (b'0', b'01', b'101'); INSERT INTO t1 VALUES (b'0', b'01', b'101');
connection slave; connection slave;
include/diff_tables.inc [master:t1, slave:t1] include/diff_tables.inc [master:t1, slave:t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
connection slave; connection slave;
......
...@@ -73,10 +73,6 @@ connection master; ...@@ -73,10 +73,6 @@ connection master;
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
DROP TABLE t1; DROP TABLE t1;
include/rpl_end.inc include/rpl_end.inc
...@@ -10,15 +10,7 @@ commit; ...@@ -10,15 +10,7 @@ commit;
connection slave; connection slave;
TABLES t1 and t2 must be equal otherwise an error will be thrown. TABLES t1 and t2 must be equal otherwise an error will be thrown.
include/diff_tables.inc [master:test.t1, slave:test.t1] include/diff_tables.inc [master:test.t1, slave:test.t1]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
include/diff_tables.inc [master:test.t2, slave:test.t2] include/diff_tables.inc [master:test.t2, slave:test.t2]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
connection master; connection master;
drop table t1,t2; drop table t1,t2;
include/rpl_end.inc include/rpl_end.inc
...@@ -33,8 +33,4 @@ HEX(b) ...@@ -33,8 +33,4 @@ HEX(b)
68000000 68000000
6B000000 6B000000
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE t, ti; DROP TABLE t, ti;
...@@ -33,8 +33,4 @@ e ...@@ -33,8 +33,4 @@ e
h h
k k
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE t, ti; DROP TABLE t, ti;
...@@ -33,8 +33,4 @@ b ...@@ -33,8 +33,4 @@ b
8 8
11 11
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE t, ti; DROP TABLE t, ti;
...@@ -15,10 +15,6 @@ ALTER TABLE t CHANGE COLUMN a aa TINYINT; ...@@ -15,10 +15,6 @@ ALTER TABLE t CHANGE COLUMN a aa TINYINT;
ALTER TABLE t CHANGE COLUMN aa a TINYINT; ALTER TABLE t CHANGE COLUMN aa a TINYINT;
ALTER TABLE ti CHANGE COLUMN aa a TINYINT; ALTER TABLE ti CHANGE COLUMN aa a TINYINT;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a TINYINT); CREATE TABLE t (a TINYINT);
...@@ -55,10 +51,6 @@ ALTER TABLE t CHANGE COLUMN a aa SMALLINT; ...@@ -55,10 +51,6 @@ ALTER TABLE t CHANGE COLUMN a aa SMALLINT;
ALTER TABLE t CHANGE COLUMN aa a SMALLINT; ALTER TABLE t CHANGE COLUMN aa a SMALLINT;
ALTER TABLE ti CHANGE COLUMN aa a SMALLINT; ALTER TABLE ti CHANGE COLUMN aa a SMALLINT;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a SMALLINT); CREATE TABLE t (a SMALLINT);
...@@ -95,10 +87,6 @@ ALTER TABLE t CHANGE COLUMN a aa MEDIUMINT; ...@@ -95,10 +87,6 @@ ALTER TABLE t CHANGE COLUMN a aa MEDIUMINT;
ALTER TABLE t CHANGE COLUMN aa a MEDIUMINT; ALTER TABLE t CHANGE COLUMN aa a MEDIUMINT;
ALTER TABLE ti CHANGE COLUMN aa a MEDIUMINT; ALTER TABLE ti CHANGE COLUMN aa a MEDIUMINT;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a MEDIUMINT); CREATE TABLE t (a MEDIUMINT);
...@@ -134,10 +122,6 @@ ALTER TABLE t CHANGE COLUMN a aa INT; ...@@ -134,10 +122,6 @@ ALTER TABLE t CHANGE COLUMN a aa INT;
ALTER TABLE t CHANGE COLUMN aa a INT; ALTER TABLE t CHANGE COLUMN aa a INT;
ALTER TABLE ti CHANGE COLUMN aa a INT; ALTER TABLE ti CHANGE COLUMN aa a INT;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a INT); CREATE TABLE t (a INT);
...@@ -173,10 +157,6 @@ ALTER TABLE t CHANGE COLUMN a aa BIGINT; ...@@ -173,10 +157,6 @@ ALTER TABLE t CHANGE COLUMN a aa BIGINT;
ALTER TABLE t CHANGE COLUMN aa a BIGINT; ALTER TABLE t CHANGE COLUMN aa a BIGINT;
ALTER TABLE ti CHANGE COLUMN aa a BIGINT; ALTER TABLE ti CHANGE COLUMN aa a BIGINT;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a TINYINT UNSIGNED); CREATE TABLE t (a TINYINT UNSIGNED);
...@@ -191,10 +171,6 @@ ALTER TABLE t CHANGE COLUMN a aa TINYINT UNSIGNED; ...@@ -191,10 +171,6 @@ ALTER TABLE t CHANGE COLUMN a aa TINYINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN aa a TINYINT UNSIGNED; ALTER TABLE t CHANGE COLUMN aa a TINYINT UNSIGNED;
ALTER TABLE ti CHANGE COLUMN aa a TINYINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN aa a TINYINT UNSIGNED;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a TINYINT UNSIGNED); CREATE TABLE t (a TINYINT UNSIGNED);
...@@ -229,10 +205,6 @@ ALTER TABLE t CHANGE COLUMN a aa SMALLINT UNSIGNED; ...@@ -229,10 +205,6 @@ ALTER TABLE t CHANGE COLUMN a aa SMALLINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN aa a SMALLINT UNSIGNED; ALTER TABLE t CHANGE COLUMN aa a SMALLINT UNSIGNED;
ALTER TABLE ti CHANGE COLUMN aa a SMALLINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN aa a SMALLINT UNSIGNED;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a SMALLINT UNSIGNED); CREATE TABLE t (a SMALLINT UNSIGNED);
...@@ -267,10 +239,6 @@ ALTER TABLE t CHANGE COLUMN a aa MEDIUMINT UNSIGNED; ...@@ -267,10 +239,6 @@ ALTER TABLE t CHANGE COLUMN a aa MEDIUMINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN aa a MEDIUMINT UNSIGNED; ALTER TABLE t CHANGE COLUMN aa a MEDIUMINT UNSIGNED;
ALTER TABLE ti CHANGE COLUMN aa a MEDIUMINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN aa a MEDIUMINT UNSIGNED;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a MEDIUMINT UNSIGNED); CREATE TABLE t (a MEDIUMINT UNSIGNED);
...@@ -305,10 +273,6 @@ ALTER TABLE t CHANGE COLUMN a aa INT UNSIGNED; ...@@ -305,10 +273,6 @@ ALTER TABLE t CHANGE COLUMN a aa INT UNSIGNED;
ALTER TABLE t CHANGE COLUMN aa a INT UNSIGNED; ALTER TABLE t CHANGE COLUMN aa a INT UNSIGNED;
ALTER TABLE ti CHANGE COLUMN aa a INT UNSIGNED; ALTER TABLE ti CHANGE COLUMN aa a INT UNSIGNED;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
CREATE TABLE t (a INT UNSIGNED); CREATE TABLE t (a INT UNSIGNED);
...@@ -343,9 +307,5 @@ ALTER TABLE t CHANGE COLUMN a aa BIGINT UNSIGNED; ...@@ -343,9 +307,5 @@ ALTER TABLE t CHANGE COLUMN a aa BIGINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN aa a BIGINT UNSIGNED; ALTER TABLE t CHANGE COLUMN aa a BIGINT UNSIGNED;
ALTER TABLE ti CHANGE COLUMN aa a BIGINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN aa a BIGINT UNSIGNED;
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE ti; DROP TABLE ti;
DROP TABLE t; DROP TABLE t;
...@@ -33,8 +33,4 @@ e ...@@ -33,8 +33,4 @@ e
h h
k k
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE t, ti; DROP TABLE t, ti;
...@@ -33,8 +33,4 @@ e ...@@ -33,8 +33,4 @@ e
h h
k k
include/diff_tables.inc [test.t, test.ti] include/diff_tables.inc [test.t, test.ti]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
DROP TABLE t, ti; DROP TABLE t, ti;
...@@ -8,10 +8,6 @@ insert into bar select * from foo; ...@@ -8,10 +8,6 @@ insert into bar select * from foo;
alter table foo add column d int default 20; alter table foo add column d int default 20;
alter table bar add column d int default 20; alter table bar add column d int default 20;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c d a b c d
-1 -1 -1 20 -1 -1 -1 20
...@@ -39,10 +35,6 @@ a b c d ...@@ -39,10 +35,6 @@ a b c d
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
...@@ -74,10 +66,6 @@ a b c ...@@ -74,10 +66,6 @@ a b c
alter table foo add column d int default 20 first; alter table foo add column d int default 20 first;
alter table bar add column d int default 20 first; alter table bar add column d int default 20 first;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
d a b c d a b c
20 -1 -1 -1 20 -1 -1 -1
...@@ -113,10 +101,6 @@ d a b c ...@@ -113,10 +101,6 @@ d a b c
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
...@@ -162,10 +146,6 @@ insert into bar select * from foo; ...@@ -162,10 +146,6 @@ insert into bar select * from foo;
alter table foo add column d int default 20; alter table foo add column d int default 20;
alter table bar add column d int default 20; alter table bar add column d int default 20;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c d a b c d
-1 -1 -1 20 -1 -1 -1 20
...@@ -193,10 +173,6 @@ a b c d ...@@ -193,10 +173,6 @@ a b c d
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
...@@ -228,10 +204,6 @@ a b c ...@@ -228,10 +204,6 @@ a b c
alter table foo add column d int default 20 first; alter table foo add column d int default 20 first;
alter table bar add column d int default 20 first; alter table bar add column d int default 20 first;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
d a b c d a b c
20 -1 -1 -1 20 -1 -1 -1
...@@ -267,10 +239,6 @@ d a b c ...@@ -267,10 +239,6 @@ d a b c
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
......
...@@ -8,10 +8,6 @@ insert into bar select * from foo; ...@@ -8,10 +8,6 @@ insert into bar select * from foo;
alter table foo add column d varchar(10) default 20; alter table foo add column d varchar(10) default 20;
alter table bar add column d varchar(10) default 20; alter table bar add column d varchar(10) default 20;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c d a b c d
-1 -1 -1 20 -1 -1 -1 20
...@@ -39,10 +35,6 @@ a b c d ...@@ -39,10 +35,6 @@ a b c d
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
...@@ -74,10 +66,6 @@ a b c ...@@ -74,10 +66,6 @@ a b c
alter table foo add column d varchar(10) default 20 first; alter table foo add column d varchar(10) default 20 first;
alter table bar add column d varchar(10) default 20 first; alter table bar add column d varchar(10) default 20 first;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
d a b c d a b c
20 -1 -1 -1 20 -1 -1 -1
...@@ -113,10 +101,6 @@ d a b c ...@@ -113,10 +101,6 @@ d a b c
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
...@@ -162,10 +146,6 @@ insert into bar select * from foo; ...@@ -162,10 +146,6 @@ insert into bar select * from foo;
alter table foo add column d varchar(10) default 20; alter table foo add column d varchar(10) default 20;
alter table bar add column d varchar(10) default 20; alter table bar add column d varchar(10) default 20;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c d a b c d
-1 -1 -1 20 -1 -1 -1 20
...@@ -193,10 +173,6 @@ a b c d ...@@ -193,10 +173,6 @@ a b c d
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
...@@ -228,10 +204,6 @@ a b c ...@@ -228,10 +204,6 @@ a b c
alter table foo add column d varchar(10) default 20 first; alter table foo add column d varchar(10) default 20 first;
alter table bar add column d varchar(10) default 20 first; alter table bar add column d varchar(10) default 20 first;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
d a b c d a b c
20 -1 -1 -1 20 -1 -1 -1
...@@ -267,10 +239,6 @@ d a b c ...@@ -267,10 +239,6 @@ d a b c
alter table foo drop column d; alter table foo drop column d;
alter table bar drop column d; alter table bar drop column d;
include/diff_tables.inc [test.foo, test.bar] include/diff_tables.inc [test.foo, test.bar]
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
Warnings:
Warning 1287 '<select expression> INTO <destination>;' is deprecated and will be removed in a future release. Please use 'SELECT <select list> INTO <destination> FROM...' instead
select * from foo; select * from foo;
a b c a b c
-1 -1 -1 -1 -1 -1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment