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;
......
...@@ -116,20 +116,8 @@ connection slave; ...@@ -116,20 +116,8 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INVOKES A TRIGGER with after insert action' #for 'INVOKES A TRIGGER with after insert action'
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
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
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -255,20 +243,8 @@ connection slave; ...@@ -255,20 +243,8 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INVOKES A TRIGGER with before insert action' #for 'INVOKES A TRIGGER with before insert action'
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
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
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -394,20 +370,8 @@ connection slave; ...@@ -394,20 +370,8 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INVOKES A TRIGGER with after update action' #for 'INVOKES A TRIGGER with after update action'
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
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
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -533,20 +497,8 @@ connection slave; ...@@ -533,20 +497,8 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INVOKES A TRIGGER with before update action' #for 'INVOKES A TRIGGER with before update action'
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
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
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -672,20 +624,8 @@ connection slave; ...@@ -672,20 +624,8 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INVOKES A TRIGGER with after delete action' #for 'INVOKES A TRIGGER with after delete action'
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
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
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -811,20 +751,8 @@ connection slave; ...@@ -811,20 +751,8 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INVOKES A TRIGGER with before delete action' #for 'INVOKES A TRIGGER with before delete action'
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
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
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -904,15 +832,7 @@ connection slave; ...@@ -904,15 +832,7 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'CALLS A FUNCTION which INVOKES A TRIGGER with after insert action' #for 'CALLS A FUNCTION which INVOKES A TRIGGER with after insert action'
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
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;
drop table t1; drop table t1;
drop table t2; drop table t2;
...@@ -989,15 +909,7 @@ connection slave; ...@@ -989,15 +909,7 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'CALLS A FUNCTION which INVOKES A TRIGGER with before insert action' #for 'CALLS A FUNCTION which INVOKES A TRIGGER with before insert action'
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
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;
drop table t1; drop table t1;
drop table t2; drop table t2;
...@@ -1028,10 +940,6 @@ connection slave; ...@@ -1028,10 +940,6 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INSERT DATA INTO VIEW WHICH INVOKES TRIGGERS' #for 'INSERT DATA INTO VIEW WHICH INVOKES TRIGGERS'
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -1062,10 +970,6 @@ connection slave; ...@@ -1062,10 +970,6 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INSERT DATA INTO VIEW WHICH INVOKES TRIGGERS' #for 'INSERT DATA INTO VIEW WHICH INVOKES TRIGGERS'
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;
DROP TABLE t1; DROP TABLE t1;
DROP TABLE t2; DROP TABLE t2;
...@@ -1189,15 +1093,7 @@ connection slave; ...@@ -1189,15 +1093,7 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'UPDATE MORE THAN ONE TABLES ON TOP-STATEMENT' #for 'UPDATE MORE THAN ONE TABLES ON TOP-STATEMENT'
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;
...@@ -1258,15 +1154,7 @@ connection slave; ...@@ -1258,15 +1154,7 @@ connection slave;
#Test if the results are consistent on master and slave #Test if the results are consistent on master and slave
#for 'INSERT DATA INTO VIEW WHICH INVOLVED MORE THAN ONE TABLES' #for 'INSERT DATA INTO VIEW WHICH INVOLVED MORE THAN ONE TABLES'
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= "";
......
...@@ -27,78 +27,36 @@ connection conn1; ...@@ -27,78 +27,36 @@ connection conn1;
REVOKE ALL PRIVILEGES, GRANT OPTION FROM CURRENT_USER(); REVOKE ALL PRIVILEGES, GRANT OPTION FROM CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user]
Warnings:
Warning 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
# Verify 'GRANT ... ON TABLE ...' statement # Verify 'GRANT ... ON TABLE ...' statement
GRANT CREATE, INSERT, SELECT ON TABLE test.t1 TO CURRENT_USER(); GRANT CREATE, INSERT, SELECT ON TABLE test.t1 TO CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv]
Warnings:
Warning 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
# Verify 'GRANT ... ON PROCEDURE...' statement # Verify 'GRANT ... ON PROCEDURE...' statement
GRANT ALTER ROUTINE, EXECUTE ON PROCEDURE p1 TO CURRENT_USER(); GRANT ALTER ROUTINE, EXECUTE ON PROCEDURE p1 TO CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv] include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv]
Warnings:
Warning 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
# Verify 'GRANT ... ON *.* ...' statement # Verify 'GRANT ... ON *.* ...' statement
GRANT ALL PRIVILEGES ON *.* TO CURRENT_USER() WITH GRANT OPTION; GRANT ALL PRIVILEGES ON *.* TO CURRENT_USER() WITH GRANT OPTION;
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv] include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv]
Warnings:
Warning 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
# Verify 'REVOKE ... ON TABLE ...' statement # Verify 'REVOKE ... ON TABLE ...' statement
REVOKE CREATE, INSERT, SELECT ON TABLE t1 FROM CURRENT_USER(); REVOKE CREATE, INSERT, SELECT ON TABLE t1 FROM CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv]
Warnings:
Warning 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
# Verify 'REVOKE ... ON PROCEDURE...' statement # Verify 'REVOKE ... ON PROCEDURE...' statement
REVOKE ALTER ROUTINE, EXECUTE ON PROCEDURE p1 FROM CURRENT_USER(); REVOKE ALTER ROUTINE, EXECUTE ON PROCEDURE p1 FROM CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv] include/diff_tables.inc [server_1:v_procs_priv, server_2:v_procs_priv, server_3:v_procs_priv]
Warnings:
Warning 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
# Verify 'REVOKE ... ON *.* ...' statement # Verify 'REVOKE ... ON *.* ...' statement
REVOKE ALL PRIVILEGES ON *.* FROM CURRENT_USER(); REVOKE ALL PRIVILEGES ON *.* FROM CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user]
Warnings:
Warning 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
# Verify 'GRANT ...' statement in the procedure # Verify 'GRANT ...' statement in the procedure
CREATE PROCEDURE my_grant() CREATE PROCEDURE my_grant()
...@@ -106,12 +64,6 @@ GRANT CREATE, INSERT, SELECT ON TABLE test.t1 TO CURRENT_USER(); ...@@ -106,12 +64,6 @@ GRANT CREATE, INSERT, SELECT ON TABLE test.t1 TO CURRENT_USER();
call my_grant; call my_grant;
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv]
Warnings:
Warning 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
# Verify 'REVOKE ... ON TABLE ...' statement in the procedure # Verify 'REVOKE ... ON TABLE ...' statement in the procedure
CREATE PROCEDURE my_revoke() CREATE PROCEDURE my_revoke()
...@@ -119,23 +71,11 @@ REVOKE CREATE, INSERT, SELECT ON TABLE t1 FROM CURRENT_USER(); ...@@ -119,23 +71,11 @@ REVOKE CREATE, INSERT, SELECT ON TABLE t1 FROM CURRENT_USER();
call my_revoke; call my_revoke;
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv] include/diff_tables.inc [server_1:v_tables_priv, server_2:v_tables_priv, server_3:v_tables_priv]
Warnings:
Warning 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
# Verify 'RENAME USER ...' statement # Verify 'RENAME USER ...' statement
RENAME USER CURRENT_USER TO 'bug48321_2'@'localhost'; RENAME USER CURRENT_USER TO 'bug48321_2'@'localhost';
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user]
Warnings:
Warning 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
disconnect conn1; disconnect conn1;
# Verify 'DROP USER ...' statement # Verify 'DROP USER ...' statement
...@@ -146,12 +86,6 @@ connection conn1; ...@@ -146,12 +86,6 @@ connection conn1;
DROP USER CURRENT_USER(); DROP USER CURRENT_USER();
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user] include/diff_tables.inc [server_1:v_user, server_2:v_user, server_3:v_user]
Warnings:
Warning 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
# Verify 'ALTER EVENT...' statement # Verify 'ALTER EVENT...' statement
connection master; connection master;
...@@ -160,24 +94,12 @@ CREATE EVENT e1 ON SCHEDULE EVERY 1 DAY DO SELECT * FROM t1; ...@@ -160,24 +94,12 @@ CREATE EVENT e1 ON SCHEDULE EVERY 1 DAY DO SELECT * FROM t1;
ALTER DEFINER=CURRENT_USER() EVENT e1 ENABLE; ALTER DEFINER=CURRENT_USER() EVENT e1 ENABLE;
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_event, server_2:v_event, server_3:v_event] include/diff_tables.inc [server_1:v_event, server_2:v_event, server_3:v_event]
Warnings:
Warning 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
# Session user will be set as definer, if the statement does not assign # Session user will be set as definer, if the statement does not assign
# a definer # a definer
ALTER EVENT e1 ENABLE; ALTER EVENT e1 ENABLE;
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:v_event, server_2:v_event, server_3:v_event] include/diff_tables.inc [server_1:v_event, server_2:v_event, server_3:v_event]
Warnings:
Warning 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
# Verify that this patch does not affect the calling of CURRENT_USER() # Verify that this patch does not affect the calling of CURRENT_USER()
# in the other statements # in the other statements
......
...@@ -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.
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;
......
...@@ -14,12 +14,6 @@ DELETE FROM t1; ...@@ -14,12 +14,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (1); INSERT INTO t1 VALUES (1);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=2 -> 3] include/rpl_init.inc [topology=2 -> 3]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -32,12 +26,6 @@ DELETE FROM t1; ...@@ -32,12 +26,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (2); INSERT INTO t1 VALUES (2);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=none] include/rpl_init.inc [topology=none]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -53,12 +41,6 @@ DELETE FROM t1; ...@@ -53,12 +41,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (3); INSERT INTO t1 VALUES (3);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=1->2, 2->1] include/rpl_init.inc [topology=1->2, 2->1]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -71,12 +53,6 @@ DELETE FROM t1; ...@@ -71,12 +53,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (4); INSERT INTO t1 VALUES (4);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=1->2->1] include/rpl_init.inc [topology=1->2->1]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -89,12 +65,6 @@ DELETE FROM t1; ...@@ -89,12 +65,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (5); INSERT INTO t1 VALUES (5);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=2->1->2] include/rpl_init.inc [topology=2->1->2]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -107,12 +77,6 @@ DELETE FROM t1; ...@@ -107,12 +77,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (6); INSERT INTO t1 VALUES (6);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=1->2->3] include/rpl_init.inc [topology=1->2->3]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -122,12 +86,6 @@ DELETE FROM t1; ...@@ -122,12 +86,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (7); INSERT INTO t1 VALUES (7);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=2->3->2->1] include/rpl_init.inc [topology=2->3->2->1]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -137,12 +95,6 @@ DELETE FROM t1; ...@@ -137,12 +95,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (8); INSERT INTO t1 VALUES (8);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=1->2,2->3,3->1] include/rpl_init.inc [topology=1->2,2->3,3->1]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -152,12 +104,6 @@ DELETE FROM t1; ...@@ -152,12 +104,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (9); INSERT INTO t1 VALUES (9);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=1->3->2->1] include/rpl_init.inc [topology=1->3->2->1]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -167,12 +113,6 @@ DELETE FROM t1; ...@@ -167,12 +113,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3: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
Warnings:
Warning 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/rpl_end.inc include/rpl_end.inc
==== Test 6-server topologies ==== ==== Test 6-server topologies ====
include/rpl_init.inc [topology=1->2->3->4->1->5->6] include/rpl_init.inc [topology=1->2->3->4->1->5->6]
...@@ -183,18 +123,6 @@ DELETE FROM t1; ...@@ -183,18 +123,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (11); INSERT INTO t1 VALUES (11);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1]
Warnings:
Warning 1287 '<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
include/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=3->4->5->6->3->1->2] include/rpl_init.inc [topology=3->4->5->6->3->1->2]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -204,18 +132,6 @@ DELETE FROM t1; ...@@ -204,18 +132,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (12); INSERT INTO t1 VALUES (12);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1]
Warnings:
Warning 1287 '<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
include/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=6->5->4->3->2->1] include/rpl_init.inc [topology=6->5->4->3->2->1]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -225,18 +141,6 @@ DELETE FROM t1; ...@@ -225,18 +141,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (13); INSERT INTO t1 VALUES (13);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1]
Warnings:
Warning 1287 '<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
include/rpl_end.inc include/rpl_end.inc
include/rpl_init.inc [topology=1->2->3->1,4->5->6] include/rpl_init.inc [topology=1->2->3->1,4->5->6]
include/rpl_generate_sync_chain.inc include/rpl_generate_sync_chain.inc
...@@ -249,18 +153,6 @@ DELETE FROM t1; ...@@ -249,18 +153,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (14); INSERT INTO t1 VALUES (14);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1]
Warnings:
Warning 1287 '<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
include/rpl_end.inc include/rpl_end.inc
==== Test 9-server topology ==== ==== Test 9-server topology ====
include/rpl_init.inc [topology=1->2, 2->3, 3->4, 4->5, 5->1, 1->6, 6->7, 6->8, 8->9] include/rpl_init.inc [topology=1->2, 2->3, 3->4, 4->5, 5->1, 1->6, 6->7, 6->8, 8->9]
...@@ -271,24 +163,6 @@ DELETE FROM t1; ...@@ -271,24 +163,6 @@ DELETE FROM t1;
INSERT INTO t1 VALUES (15); INSERT INTO t1 VALUES (15);
include/rpl_sync.inc include/rpl_sync.inc
include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1,server_7:t1,server_8:t1,server_9:t1] include/diff_tables.inc [server_1:t1,server_2:t1,server_3:t1,server_4:t1,server_5:t1,server_6:t1,server_7:t1,server_8:t1,server_9:t1]
Warnings:
Warning 1287 '<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
include/rpl_end.inc include/rpl_end.inc
==== Clean up ==== ==== Clean up ====
include/rpl_init.inc [topology=1->2->3->4->5->6->7->8->9] include/rpl_init.inc [topology=1->2->3->4->5->6->7->8->9]
......
...@@ -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;
...@@ -536,10 +536,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(2); ...@@ -536,10 +536,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(2);
ALTER TABLE t CHANGE COLUMN a b BINARY(2); ALTER TABLE t CHANGE COLUMN a b BINARY(2);
ALTER TABLE t CHANGE COLUMN b a BINARY(2); ALTER TABLE t CHANGE COLUMN b a BINARY(2);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(3); ALTER TABLE t CHANGE COLUMN a b BINARY(3);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -1066,10 +1062,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(3); ...@@ -1066,10 +1062,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(3);
ALTER TABLE t CHANGE COLUMN a b BINARY(3); ALTER TABLE t CHANGE COLUMN a b BINARY(3);
ALTER TABLE t CHANGE COLUMN b a BINARY(3); ALTER TABLE t CHANGE COLUMN b a BINARY(3);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(4); ALTER TABLE t CHANGE COLUMN a b BINARY(4);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -1596,10 +1588,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(4); ...@@ -1596,10 +1588,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(4);
ALTER TABLE t CHANGE COLUMN a b BINARY(4); ALTER TABLE t CHANGE COLUMN a b BINARY(4);
ALTER TABLE t CHANGE COLUMN b a BINARY(4); ALTER TABLE t CHANGE COLUMN b a BINARY(4);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(5); ALTER TABLE t CHANGE COLUMN a b BINARY(5);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -2124,10 +2112,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(5); ...@@ -2124,10 +2112,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(5);
ALTER TABLE t CHANGE COLUMN a b BINARY(5); ALTER TABLE t CHANGE COLUMN a b BINARY(5);
ALTER TABLE t CHANGE COLUMN b a BINARY(5); ALTER TABLE t CHANGE COLUMN b a BINARY(5);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(6); ALTER TABLE t CHANGE COLUMN a b BINARY(6);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -2650,10 +2634,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(6); ...@@ -2650,10 +2634,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(6);
ALTER TABLE t CHANGE COLUMN a b BINARY(6); ALTER TABLE t CHANGE COLUMN a b BINARY(6);
ALTER TABLE t CHANGE COLUMN b a BINARY(6); ALTER TABLE t CHANGE COLUMN b a BINARY(6);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(7); ALTER TABLE t CHANGE COLUMN a b BINARY(7);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -3176,10 +3156,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(7); ...@@ -3176,10 +3156,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(7);
ALTER TABLE t CHANGE COLUMN a b BINARY(7); ALTER TABLE t CHANGE COLUMN a b BINARY(7);
ALTER TABLE t CHANGE COLUMN b a BINARY(7); ALTER TABLE t CHANGE COLUMN b a BINARY(7);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(8); ALTER TABLE t CHANGE COLUMN a b BINARY(8);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -3702,10 +3678,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(8); ...@@ -3702,10 +3678,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(8);
ALTER TABLE t CHANGE COLUMN a b BINARY(8); ALTER TABLE t CHANGE COLUMN a b BINARY(8);
ALTER TABLE t CHANGE COLUMN b a BINARY(8); ALTER TABLE t CHANGE COLUMN b a BINARY(8);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(9); ALTER TABLE t CHANGE COLUMN a b BINARY(9);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -4242,10 +4214,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(16); ...@@ -4242,10 +4214,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(16);
ALTER TABLE t CHANGE COLUMN a b BINARY(16); ALTER TABLE t CHANGE COLUMN a b BINARY(16);
ALTER TABLE t CHANGE COLUMN b a BINARY(16); ALTER TABLE t CHANGE COLUMN b a BINARY(16);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(17); ALTER TABLE t CHANGE COLUMN a b BINARY(17);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -4796,10 +4764,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(31); ...@@ -4796,10 +4764,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(31);
ALTER TABLE t CHANGE COLUMN a b BINARY(31); ALTER TABLE t CHANGE COLUMN a b BINARY(31);
ALTER TABLE t CHANGE COLUMN b a BINARY(31); ALTER TABLE t CHANGE COLUMN b a BINARY(31);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(32); ALTER TABLE t CHANGE COLUMN a b BINARY(32);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -5322,10 +5286,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(32); ...@@ -5322,10 +5286,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(32);
ALTER TABLE t CHANGE COLUMN a b BINARY(32); ALTER TABLE t CHANGE COLUMN a b BINARY(32);
ALTER TABLE t CHANGE COLUMN b a BINARY(32); ALTER TABLE t CHANGE COLUMN b a BINARY(32);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(33); ALTER TABLE t CHANGE COLUMN a b BINARY(33);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -5908,10 +5868,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(63); ...@@ -5908,10 +5868,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(63);
ALTER TABLE t CHANGE COLUMN a b BINARY(63); ALTER TABLE t CHANGE COLUMN a b BINARY(63);
ALTER TABLE t CHANGE COLUMN b a BINARY(63); ALTER TABLE t CHANGE COLUMN b a BINARY(63);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(64); ALTER TABLE t CHANGE COLUMN a b BINARY(64);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -6434,10 +6390,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(64); ...@@ -6434,10 +6390,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(64);
ALTER TABLE t CHANGE COLUMN a b BINARY(64); ALTER TABLE t CHANGE COLUMN a b BINARY(64);
ALTER TABLE t CHANGE COLUMN b a BINARY(64); ALTER TABLE t CHANGE COLUMN b a BINARY(64);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(65); ALTER TABLE t CHANGE COLUMN a b BINARY(65);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -7084,10 +7036,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(127); ...@@ -7084,10 +7036,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(127);
ALTER TABLE t CHANGE COLUMN a b BINARY(127); ALTER TABLE t CHANGE COLUMN a b BINARY(127);
ALTER TABLE t CHANGE COLUMN b a BINARY(127); ALTER TABLE t CHANGE COLUMN b a BINARY(127);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(128); ALTER TABLE t CHANGE COLUMN a b BINARY(128);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -7610,10 +7558,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(128); ...@@ -7610,10 +7558,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(128);
ALTER TABLE t CHANGE COLUMN a b BINARY(128); ALTER TABLE t CHANGE COLUMN a b BINARY(128);
ALTER TABLE t CHANGE COLUMN b a BINARY(128); ALTER TABLE t CHANGE COLUMN b a BINARY(128);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(129); ALTER TABLE t CHANGE COLUMN a b BINARY(129);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -8386,10 +8330,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(254); ...@@ -8386,10 +8330,6 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(254);
ALTER TABLE t CHANGE COLUMN a b BINARY(254); ALTER TABLE t CHANGE COLUMN a b BINARY(254);
ALTER TABLE t CHANGE COLUMN b a BINARY(254); ALTER TABLE t CHANGE COLUMN b a BINARY(254);
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;
ALTER TABLE t CHANGE COLUMN a b BINARY(255); ALTER TABLE t CHANGE COLUMN a b BINARY(255);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -8912,9 +8852,5 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(255); ...@@ -8912,9 +8852,5 @@ ALTER TABLE ti CHANGE COLUMN b a BINARY(255);
ALTER TABLE t CHANGE COLUMN a b BINARY(255); ALTER TABLE t CHANGE COLUMN a b BINARY(255);
ALTER TABLE t CHANGE COLUMN b a BINARY(255); ALTER TABLE t CHANGE COLUMN b a BINARY(255);
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;
...@@ -25,10 +25,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -25,10 +25,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('T3V0h0kB7Z43jqSTiaI','czB9GVLA611e55NpukvYdrc4UOTWiIFEfvtvXcTMbn8TFqhie2D3gRzU5AjZoxtSSMMMcsWl0wnsoWtK2tfGQCRgayc9pv0t4NRCFwlH2Un3cpiiQdW59gYphjYXlE1q5ABTuPPv32nb0Ws5deOTxIc11qWPfYnHeuZ91SG94wXYxQLKAqMx1EHaUssU8N6cz8JKrJTVvp5cA4nbGgFLZKOEvqFuHq1mgcaFm71NvcOui2BaVRfUbl64shd'); INSERT INTO t (a, b) VALUES ('T3V0h0kB7Z43jqSTiaI','czB9GVLA611e55NpukvYdrc4UOTWiIFEfvtvXcTMbn8TFqhie2D3gRzU5AjZoxtSSMMMcsWl0wnsoWtK2tfGQCRgayc9pv0t4NRCFwlH2Un3cpiiQdW59gYphjYXlE1q5ABTuPPv32nb0Ws5deOTxIc11qWPfYnHeuZ91SG94wXYxQLKAqMx1EHaUssU8N6cz8JKrJTVvp5cA4nbGgFLZKOEvqFuHq1mgcaFm71NvcOui2BaVRfUbl64shd');
...@@ -54,10 +50,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -54,10 +50,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYBLOB , b TINYBLOB ); CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('1pR3ukt4Ue1ddcv7l7cdLUtIvUrc','3KWeNropDQVN59sEvm1JNuyNGawl467fqCbpsyxZi9SsxJ8D0WLw6TdCCs2E7TOwtSD5g5rvVFelfdMCe59d9jJ06jpriiPl'); INSERT INTO t (a, b) VALUES ('1pR3ukt4Ue1ddcv7l7cdLUtIvUrc','3KWeNropDQVN59sEvm1JNuyNGawl467fqCbpsyxZi9SsxJ8D0WLw6TdCCs2E7TOwtSD5g5rvVFelfdMCe59d9jJ06jpriiPl');
...@@ -83,10 +75,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -83,10 +75,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('ZCcIgA','TgeHsGJbqV0cK6PHoJXwkuk3KeExgjHUouDUAHtuyIrkkegjoIkgZk8Ue77o3Rb4bLsf674Xs0OuzlXFOcaSqU'); INSERT INTO t (a, b) VALUES ('ZCcIgA','TgeHsGJbqV0cK6PHoJXwkuk3KeExgjHUouDUAHtuyIrkkegjoIkgZk8Ue77o3Rb4bLsf674Xs0OuzlXFOcaSqU');
...@@ -112,10 +100,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -112,10 +100,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB , b TINYBLOB ); CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('4','8COJIsoEwzuFuY0XobeNMr1uhHotDoFksHC4sKkv3MLMI0Rm1XHKUKkEfnFYeog0y1qbkhyM5OhUhczN4uUH2rwA3BZb00rHLE5cxCFsQqGr3RlAX4uDGshnxozQfi7DL3IlRqYjwy0ItkISRHGYwPpW3CuC3cMSOidb48kt1cqqzy7XWtA93KNpBJhcYxAyPO1on5U5N4fgOl0JOZRvzxR5m5yma378hXl3C5W'); INSERT INTO t (a, b) VALUES ('4','8COJIsoEwzuFuY0XobeNMr1uhHotDoFksHC4sKkv3MLMI0Rm1XHKUKkEfnFYeog0y1qbkhyM5OhUhczN4uUH2rwA3BZb00rHLE5cxCFsQqGr3RlAX4uDGshnxozQfi7DL3IlRqYjwy0ItkISRHGYwPpW3CuC3cMSOidb48kt1cqqzy7XWtA93KNpBJhcYxAyPO1on5U5N4fgOl0JOZRvzxR5m5yma378hXl3C5W');
...@@ -141,10 +125,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -141,10 +125,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('zhUb9Hu5Wlv2kL3j9w','C4AQe2AZNlGu8CVuqp7Cygd1bF9pm7W6dBTdd6tAfe6Ac1GscSl'); INSERT INTO t (a, b) VALUES ('zhUb9Hu5Wlv2kL3j9w','C4AQe2AZNlGu8CVuqp7Cygd1bF9pm7W6dBTdd6tAfe6Ac1GscSl');
...@@ -170,10 +150,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -170,10 +150,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0, a TINYBLOB , b TINYBLOB ); CREATE TABLE t (f INT DEFAULT 0, a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('WdaEkmCiDOrvN5RGfjGGD17','Rv7pU4m11NDa2H2mE89d6ztify9OAlmPs'); INSERT INTO t (a, b) VALUES ('WdaEkmCiDOrvN5RGfjGGD17','Rv7pU4m11NDa2H2mE89d6ztify9OAlmPs');
...@@ -199,10 +175,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -199,10 +175,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (f INT DEFAULT 0, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (f INT DEFAULT 0, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('2ajs1f82ZmqPhqXBpaH','N8Xvw6uv9i7oZJZ'); INSERT INTO t (a, b) VALUES ('2ajs1f82ZmqPhqXBpaH','N8Xvw6uv9i7oZJZ');
...@@ -228,10 +200,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -228,10 +200,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYBLOB , b TINYBLOB ); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('EznArw','vo6j2j3be9KBIlTHlP4bUwWKoZhbVrl6y8utY7cLGtoAMNy7xQSUjbQk7q1eWkzqjhbNqxWcROhC3YNQpizFk8rKTX9cCMuiGrDVBaVnHEaIQ5xhOrao1RDIYctYYn'); INSERT INTO t (a, b) VALUES ('EznArw','vo6j2j3be9KBIlTHlP4bUwWKoZhbVrl6y8utY7cLGtoAMNy7xQSUjbQk7q1eWkzqjhbNqxWcROhC3YNQpizFk8rKTX9cCMuiGrDVBaVnHEaIQ5xhOrao1RDIYctYYn');
...@@ -257,10 +225,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -257,10 +225,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('lL','MjEImtvTwSkiFTBkVCjUv7ns1KFK6e7SQucDDCrKxVF9DLGnhNP1a4nnT9ix3PfdlCn08iu9FbMV0mVCisdmGhXgXxzjohZwBGrN54fLsg7L6h5O3KMvv2XeUB6AenAmZsKa6ZpRKYJiWmq64XLLocD9vjLDnRQ1Op10YuqBe08eNi0QU8oNJuMqnCrVLbw1a8bVrX6CvTRGETBPj4BWb2nyLCIQLZ2brn'); INSERT INTO t (a, b) VALUES ('lL','MjEImtvTwSkiFTBkVCjUv7ns1KFK6e7SQucDDCrKxVF9DLGnhNP1a4nnT9ix3PfdlCn08iu9FbMV0mVCisdmGhXgXxzjohZwBGrN54fLsg7L6h5O3KMvv2XeUB6AenAmZsKa6ZpRKYJiWmq64XLLocD9vjLDnRQ1Op10YuqBe08eNi0QU8oNJuMqnCrVLbw1a8bVrX6CvTRGETBPj4BWb2nyLCIQLZ2brn');
...@@ -286,10 +250,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -286,10 +250,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB , b TINYBLOB ); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('1N585BBQh0iEW93L','l6Rgi1dWfXEDfaibVhy8R3DvrDLuelXzLrwGW1FEQx2BgWGfzomHJfhGfzSVSqszNdifYmCyRheks'); INSERT INTO t (a, b) VALUES ('1N585BBQh0iEW93L','l6Rgi1dWfXEDfaibVhy8R3DvrDLuelXzLrwGW1FEQx2BgWGfzomHJfhGfzSVSqszNdifYmCyRheks');
...@@ -315,10 +275,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -315,10 +275,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('HhNGpHAPWQ8','0Q5hSkbZLKKzavHJ7sZ7S9GKzds4BhnE'); INSERT INTO t (a, b) VALUES ('HhNGpHAPWQ8','0Q5hSkbZLKKzavHJ7sZ7S9GKzds4BhnE');
...@@ -344,10 +300,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -344,10 +300,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYBLOB , b TINYBLOB ); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('8P49xApofl0PNKnNcmj','DhRrz27wl2mOIoYOvZb6UCzr4u4rxwCoAFrMuM92y3hFjIu0iLUa7xUUZe1F8doEg9nBHcFo5NY4DMm0PNYKpkerTYPmIwE2gnTcCq77SgqgyeM60MdFsnO34MLEEA35Zr3MjeuJ37oGjf6vfSNUpiL0UAmhfWwfO6tLqrHtUtJhNVMvIS1pdahZJTV'); INSERT INTO t (a, b) VALUES ('8P49xApofl0PNKnNcmj','DhRrz27wl2mOIoYOvZb6UCzr4u4rxwCoAFrMuM92y3hFjIu0iLUa7xUUZe1F8doEg9nBHcFo5NY4DMm0PNYKpkerTYPmIwE2gnTcCq77SgqgyeM60MdFsnO34MLEEA35Zr3MjeuJ37oGjf6vfSNUpiL0UAmhfWwfO6tLqrHtUtJhNVMvIS1pdahZJTV');
...@@ -373,10 +325,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -373,10 +325,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('hPDlpbufOe8shVHIYUo','W6SMefVaBzMArHmqFdw3Z9OAuZHMjfyQ'); INSERT INTO t (a, b) VALUES ('hPDlpbufOe8shVHIYUo','W6SMefVaBzMArHmqFdw3Z9OAuZHMjfyQ');
...@@ -402,10 +350,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -402,10 +350,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYBLOB , b TINYBLOB ); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('rmCC1RZ8fu9Zq6DwO','0vLyV4LMJuHlwPG5245J5yVDuapHQWy3vqHdlTQkQGqJWcFUz0kDWL38DeyT8nQ5WLbDqGHREisps27bINC3Ew5p7Uuf4XBleBD12f6K7g59gWBnYxd6ZsYcwcphcMWq2c8bQmbwLy1fHQ2IJaCTTAjWGd4wBHcXyg5ogi9lomnebSeI1ox1HfjWI0H6GAdsHGibXcY7QPUgVOKA5BB7jrIVpj92YSW1YAbIJLSfncht4iUlSRdyA'); INSERT INTO t (a, b) VALUES ('rmCC1RZ8fu9Zq6DwO','0vLyV4LMJuHlwPG5245J5yVDuapHQWy3vqHdlTQkQGqJWcFUz0kDWL38DeyT8nQ5WLbDqGHREisps27bINC3Ew5p7Uuf4XBleBD12f6K7g59gWBnYxd6ZsYcwcphcMWq2c8bQmbwLy1fHQ2IJaCTTAjWGd4wBHcXyg5ogi9lomnebSeI1ox1HfjWI0H6GAdsHGibXcY7QPUgVOKA5BB7jrIVpj92YSW1YAbIJLSfncht4iUlSRdyA');
...@@ -433,10 +377,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -433,10 +377,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('84XkENBIpBOSIA9X','LLq2mrmKvbMURprQVllY6xdk1TyqLir7dVBLIcXMsroq60cdRUdMKNHhsMReUaIovhRPz9K20MJ45FRldiEcPig0YPQpPRchf8or8X9FDk4dnLBstqPdWPRN4yKcpQQ8d'); INSERT INTO t (a, b) VALUES ('84XkENBIpBOSIA9X','LLq2mrmKvbMURprQVllY6xdk1TyqLir7dVBLIcXMsroq60cdRUdMKNHhsMReUaIovhRPz9K20MJ45FRldiEcPig0YPQpPRchf8or8X9FDk4dnLBstqPdWPRN4yKcpQQ8d');
...@@ -462,10 +402,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -462,10 +402,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB , b TINYBLOB ); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB , b TINYBLOB );
INSERT INTO t (a, b) VALUES ('9jLJ0ZIO55FP61poxeO4L','qDlG0rPg6pQ7scksQFOqxTGZIaOHz90VSV78nGu0wQQzXIEBiNp4Kq7hDgs1eW5ot9uKyvz'); INSERT INTO t (a, b) VALUES ('9jLJ0ZIO55FP61poxeO4L','qDlG0rPg6pQ7scksQFOqxTGZIaOHz90VSV78nGu0wQQzXIEBiNp4Kq7hDgs1eW5ot9uKyvz');
...@@ -491,10 +427,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ; ...@@ -491,10 +427,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB ;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB ; ALTER TABLE t CHANGE COLUMN b b LONGBLOB ;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB ;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYBLOB NOT NULL, b TINYBLOB NOT NULL);
INSERT INTO t (a, b) VALUES ('Id','eKhtNKGQb2m0JpvyzVayefC7fAbhKzbR0wVzLCarlBdjxgEfVx4Fbm8C0uzQn9UuSsL5unnHgR2DQ9bzpbXY1ib7q5'); INSERT INTO t (a, b) VALUES ('Id','eKhtNKGQb2m0JpvyzVayefC7fAbhKzbR0wVzLCarlBdjxgEfVx4Fbm8C0uzQn9UuSsL5unnHgR2DQ9bzpbXY1ib7q5');
...@@ -520,8 +452,4 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL; ...@@ -520,8 +452,4 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMBLOB NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGBLOB NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGBLOB NOT NULL;
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;
...@@ -536,10 +536,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(2); ...@@ -536,10 +536,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(2);
ALTER TABLE t CHANGE COLUMN a b CHAR(2); ALTER TABLE t CHANGE COLUMN a b CHAR(2);
ALTER TABLE t CHANGE COLUMN b a CHAR(2); ALTER TABLE t CHANGE COLUMN b a CHAR(2);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(3); ALTER TABLE t CHANGE COLUMN a b CHAR(3);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -1066,10 +1062,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(3); ...@@ -1066,10 +1062,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(3);
ALTER TABLE t CHANGE COLUMN a b CHAR(3); ALTER TABLE t CHANGE COLUMN a b CHAR(3);
ALTER TABLE t CHANGE COLUMN b a CHAR(3); ALTER TABLE t CHANGE COLUMN b a CHAR(3);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(4); ALTER TABLE t CHANGE COLUMN a b CHAR(4);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -1596,10 +1588,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(4); ...@@ -1596,10 +1588,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(4);
ALTER TABLE t CHANGE COLUMN a b CHAR(4); ALTER TABLE t CHANGE COLUMN a b CHAR(4);
ALTER TABLE t CHANGE COLUMN b a CHAR(4); ALTER TABLE t CHANGE COLUMN b a CHAR(4);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(5); ALTER TABLE t CHANGE COLUMN a b CHAR(5);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -2124,10 +2112,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(5); ...@@ -2124,10 +2112,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(5);
ALTER TABLE t CHANGE COLUMN a b CHAR(5); ALTER TABLE t CHANGE COLUMN a b CHAR(5);
ALTER TABLE t CHANGE COLUMN b a CHAR(5); ALTER TABLE t CHANGE COLUMN b a CHAR(5);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(6); ALTER TABLE t CHANGE COLUMN a b CHAR(6);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -2650,10 +2634,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(6); ...@@ -2650,10 +2634,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(6);
ALTER TABLE t CHANGE COLUMN a b CHAR(6); ALTER TABLE t CHANGE COLUMN a b CHAR(6);
ALTER TABLE t CHANGE COLUMN b a CHAR(6); ALTER TABLE t CHANGE COLUMN b a CHAR(6);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(7); ALTER TABLE t CHANGE COLUMN a b CHAR(7);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -3176,10 +3156,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(7); ...@@ -3176,10 +3156,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(7);
ALTER TABLE t CHANGE COLUMN a b CHAR(7); ALTER TABLE t CHANGE COLUMN a b CHAR(7);
ALTER TABLE t CHANGE COLUMN b a CHAR(7); ALTER TABLE t CHANGE COLUMN b a CHAR(7);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(8); ALTER TABLE t CHANGE COLUMN a b CHAR(8);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -3702,10 +3678,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(8); ...@@ -3702,10 +3678,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(8);
ALTER TABLE t CHANGE COLUMN a b CHAR(8); ALTER TABLE t CHANGE COLUMN a b CHAR(8);
ALTER TABLE t CHANGE COLUMN b a CHAR(8); ALTER TABLE t CHANGE COLUMN b a CHAR(8);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(9); ALTER TABLE t CHANGE COLUMN a b CHAR(9);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -4242,10 +4214,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(16); ...@@ -4242,10 +4214,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(16);
ALTER TABLE t CHANGE COLUMN a b CHAR(16); ALTER TABLE t CHANGE COLUMN a b CHAR(16);
ALTER TABLE t CHANGE COLUMN b a CHAR(16); ALTER TABLE t CHANGE COLUMN b a CHAR(16);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(17); ALTER TABLE t CHANGE COLUMN a b CHAR(17);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -4796,10 +4764,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(31); ...@@ -4796,10 +4764,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(31);
ALTER TABLE t CHANGE COLUMN a b CHAR(31); ALTER TABLE t CHANGE COLUMN a b CHAR(31);
ALTER TABLE t CHANGE COLUMN b a CHAR(31); ALTER TABLE t CHANGE COLUMN b a CHAR(31);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(32); ALTER TABLE t CHANGE COLUMN a b CHAR(32);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -5322,10 +5286,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(32); ...@@ -5322,10 +5286,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(32);
ALTER TABLE t CHANGE COLUMN a b CHAR(32); ALTER TABLE t CHANGE COLUMN a b CHAR(32);
ALTER TABLE t CHANGE COLUMN b a CHAR(32); ALTER TABLE t CHANGE COLUMN b a CHAR(32);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(33); ALTER TABLE t CHANGE COLUMN a b CHAR(33);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -5908,10 +5868,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(63); ...@@ -5908,10 +5868,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(63);
ALTER TABLE t CHANGE COLUMN a b CHAR(63); ALTER TABLE t CHANGE COLUMN a b CHAR(63);
ALTER TABLE t CHANGE COLUMN b a CHAR(63); ALTER TABLE t CHANGE COLUMN b a CHAR(63);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(64); ALTER TABLE t CHANGE COLUMN a b CHAR(64);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -6434,10 +6390,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(64); ...@@ -6434,10 +6390,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(64);
ALTER TABLE t CHANGE COLUMN a b CHAR(64); ALTER TABLE t CHANGE COLUMN a b CHAR(64);
ALTER TABLE t CHANGE COLUMN b a CHAR(64); ALTER TABLE t CHANGE COLUMN b a CHAR(64);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(65); ALTER TABLE t CHANGE COLUMN a b CHAR(65);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -7084,10 +7036,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(127); ...@@ -7084,10 +7036,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(127);
ALTER TABLE t CHANGE COLUMN a b CHAR(127); ALTER TABLE t CHANGE COLUMN a b CHAR(127);
ALTER TABLE t CHANGE COLUMN b a CHAR(127); ALTER TABLE t CHANGE COLUMN b a CHAR(127);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(128); ALTER TABLE t CHANGE COLUMN a b CHAR(128);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -7610,10 +7558,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(128); ...@@ -7610,10 +7558,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(128);
ALTER TABLE t CHANGE COLUMN a b CHAR(128); ALTER TABLE t CHANGE COLUMN a b CHAR(128);
ALTER TABLE t CHANGE COLUMN b a CHAR(128); ALTER TABLE t CHANGE COLUMN b a CHAR(128);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(129); ALTER TABLE t CHANGE COLUMN a b CHAR(129);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -8386,10 +8330,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(254); ...@@ -8386,10 +8330,6 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(254);
ALTER TABLE t CHANGE COLUMN a b CHAR(254); ALTER TABLE t CHANGE COLUMN a b CHAR(254);
ALTER TABLE t CHANGE COLUMN b a CHAR(254); ALTER TABLE t CHANGE COLUMN b a CHAR(254);
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;
ALTER TABLE t CHANGE COLUMN a b CHAR(255); ALTER TABLE t CHANGE COLUMN a b CHAR(255);
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
...@@ -8912,9 +8852,5 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(255); ...@@ -8912,9 +8852,5 @@ ALTER TABLE ti CHANGE COLUMN b a CHAR(255);
ALTER TABLE t CHANGE COLUMN a b CHAR(255); ALTER TABLE t CHANGE COLUMN a b CHAR(255);
ALTER TABLE t CHANGE COLUMN b a CHAR(255); ALTER TABLE t CHANGE COLUMN b a CHAR(255);
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;
...@@ -13,10 +13,6 @@ INSERT INTO ti SELECT * from t; ...@@ -13,10 +13,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a TINYINT; ALTER TABLE ti CHANGE COLUMN a a TINYINT;
ALTER TABLE t CHANGE COLUMN a a TINYINT; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -31,10 +27,6 @@ INSERT INTO ti SELECT * from t; ...@@ -31,10 +27,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a SMALLINT; ALTER TABLE ti CHANGE COLUMN a a SMALLINT;
ALTER TABLE t CHANGE COLUMN a a SMALLINT; ALTER TABLE t CHANGE COLUMN a 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 TINYINT); CREATE TABLE t (a TINYINT);
...@@ -49,10 +41,6 @@ INSERT INTO ti SELECT * from t; ...@@ -49,10 +41,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT; ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT;
ALTER TABLE t CHANGE COLUMN a a MEDIUMINT; ALTER TABLE t CHANGE COLUMN a 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 TINYINT); CREATE TABLE t (a TINYINT);
...@@ -67,10 +55,6 @@ INSERT INTO ti SELECT * from t; ...@@ -67,10 +55,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT; ALTER TABLE ti CHANGE COLUMN a a INT;
ALTER TABLE t CHANGE COLUMN a a INT; ALTER TABLE t CHANGE COLUMN a 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 TINYINT); CREATE TABLE t (a TINYINT);
...@@ -85,10 +69,6 @@ INSERT INTO ti SELECT * from t; ...@@ -85,10 +69,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT; ALTER TABLE ti CHANGE COLUMN a a BIGINT;
ALTER TABLE t CHANGE COLUMN a a BIGINT; ALTER TABLE t CHANGE COLUMN a 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 SMALLINT); CREATE TABLE t (a SMALLINT);
...@@ -107,10 +87,6 @@ INSERT INTO ti SELECT * from t; ...@@ -107,10 +87,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a SMALLINT; ALTER TABLE ti CHANGE COLUMN a a SMALLINT;
ALTER TABLE t CHANGE COLUMN a a SMALLINT; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -125,10 +101,6 @@ INSERT INTO ti SELECT * from t; ...@@ -125,10 +101,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT; ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT;
ALTER TABLE t CHANGE COLUMN a a MEDIUMINT; ALTER TABLE t CHANGE COLUMN a 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 SMALLINT); CREATE TABLE t (a SMALLINT);
...@@ -143,10 +115,6 @@ INSERT INTO ti SELECT * from t; ...@@ -143,10 +115,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT; ALTER TABLE ti CHANGE COLUMN a a INT;
ALTER TABLE t CHANGE COLUMN a a INT; ALTER TABLE t CHANGE COLUMN a 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 SMALLINT); CREATE TABLE t (a SMALLINT);
...@@ -161,10 +129,6 @@ INSERT INTO ti SELECT * from t; ...@@ -161,10 +129,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT; ALTER TABLE ti CHANGE COLUMN a a BIGINT;
ALTER TABLE t CHANGE COLUMN a a BIGINT; ALTER TABLE t CHANGE COLUMN a 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 MEDIUMINT); CREATE TABLE t (a MEDIUMINT);
...@@ -187,10 +151,6 @@ INSERT INTO ti SELECT * from t; ...@@ -187,10 +151,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT; ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT;
ALTER TABLE t CHANGE COLUMN a a MEDIUMINT; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -205,10 +165,6 @@ INSERT INTO ti SELECT * from t; ...@@ -205,10 +165,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT; ALTER TABLE ti CHANGE COLUMN a a INT;
ALTER TABLE t CHANGE COLUMN a a INT; ALTER TABLE t CHANGE COLUMN a 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 MEDIUMINT); CREATE TABLE t (a MEDIUMINT);
...@@ -223,10 +179,6 @@ INSERT INTO ti SELECT * from t; ...@@ -223,10 +179,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT; ALTER TABLE ti CHANGE COLUMN a a BIGINT;
ALTER TABLE t CHANGE COLUMN a a BIGINT; ALTER TABLE t CHANGE COLUMN a 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 INT); CREATE TABLE t (a INT);
...@@ -252,10 +204,6 @@ INSERT INTO ti SELECT * from t; ...@@ -252,10 +204,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT; ALTER TABLE ti CHANGE COLUMN a a INT;
ALTER TABLE t CHANGE COLUMN a a INT; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -269,10 +217,6 @@ INSERT INTO ti SELECT * from t; ...@@ -269,10 +217,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT; ALTER TABLE ti CHANGE COLUMN a a BIGINT;
ALTER TABLE t CHANGE COLUMN a a BIGINT; ALTER TABLE t CHANGE COLUMN a 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 BIGINT); CREATE TABLE t (a BIGINT);
...@@ -302,10 +246,6 @@ INSERT INTO ti SELECT * from t; ...@@ -302,10 +246,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT; ALTER TABLE ti CHANGE COLUMN a a BIGINT;
ALTER TABLE t CHANGE COLUMN a a BIGINT; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -318,10 +258,6 @@ INSERT INTO ti SELECT * from t; ...@@ -318,10 +258,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a TINYINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a TINYINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a TINYINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -334,10 +270,6 @@ INSERT INTO ti SELECT * from t; ...@@ -334,10 +270,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a SMALLINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a SMALLINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a SMALLINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 TINYINT UNSIGNED); CREATE TABLE t (a TINYINT UNSIGNED);
...@@ -350,10 +282,6 @@ INSERT INTO ti SELECT * from t; ...@@ -350,10 +282,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a MEDIUMINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 TINYINT UNSIGNED); CREATE TABLE t (a TINYINT UNSIGNED);
...@@ -366,10 +294,6 @@ INSERT INTO ti SELECT * from t; ...@@ -366,10 +294,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 TINYINT UNSIGNED); CREATE TABLE t (a TINYINT UNSIGNED);
...@@ -382,10 +306,6 @@ INSERT INTO ti SELECT * from t; ...@@ -382,10 +306,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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;
CREATE TABLE t (a SMALLINT UNSIGNED); CREATE TABLE t (a SMALLINT UNSIGNED);
...@@ -402,10 +322,6 @@ INSERT INTO ti SELECT * from t; ...@@ -402,10 +322,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a SMALLINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a SMALLINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a SMALLINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -418,10 +334,6 @@ INSERT INTO ti SELECT * from t; ...@@ -418,10 +334,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a MEDIUMINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 SMALLINT UNSIGNED); CREATE TABLE t (a SMALLINT UNSIGNED);
...@@ -434,10 +346,6 @@ INSERT INTO ti SELECT * from t; ...@@ -434,10 +346,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 SMALLINT UNSIGNED); CREATE TABLE t (a SMALLINT UNSIGNED);
...@@ -450,10 +358,6 @@ INSERT INTO ti SELECT * from t; ...@@ -450,10 +358,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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;
CREATE TABLE t (a MEDIUMINT UNSIGNED); CREATE TABLE t (a MEDIUMINT UNSIGNED);
...@@ -474,10 +378,6 @@ INSERT INTO ti SELECT * from t; ...@@ -474,10 +378,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a MEDIUMINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a MEDIUMINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -490,10 +390,6 @@ INSERT INTO ti SELECT * from t; ...@@ -490,10 +390,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 MEDIUMINT UNSIGNED); CREATE TABLE t (a MEDIUMINT UNSIGNED);
...@@ -506,10 +402,6 @@ INSERT INTO ti SELECT * from t; ...@@ -506,10 +402,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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;
CREATE TABLE t (a INT UNSIGNED); CREATE TABLE t (a INT UNSIGNED);
...@@ -534,10 +426,6 @@ INSERT INTO ti SELECT * from t; ...@@ -534,10 +426,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a INT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a INT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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);
...@@ -550,10 +438,6 @@ INSERT INTO ti SELECT * from t; ...@@ -550,10 +438,6 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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;
CREATE TABLE t (a BIGINT UNSIGNED); CREATE TABLE t (a BIGINT UNSIGNED);
...@@ -582,9 +466,5 @@ INSERT INTO ti SELECT * from t; ...@@ -582,9 +466,5 @@ INSERT INTO ti SELECT * from t;
ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE ti CHANGE COLUMN a a BIGINT UNSIGNED;
ALTER TABLE t CHANGE COLUMN a a BIGINT UNSIGNED; ALTER TABLE t CHANGE COLUMN a 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 @@ 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;
...@@ -25,10 +25,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -25,10 +25,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('T3V0h0kB7Z43jqSTiaI','czB9GVLA611e55NpukvYdrc4UOTWiIFEfvtvXcTMbn8TFqhie2D3gRzU5AjZoxtSSMMMcsWl0wnsoWtK2tfGQCRgayc9pv0t4NRCFwlH2Un3cpiiQdW59gYphjYXlE1q5ABTuPPv32nb0Ws5deOTxIc11qWPfYnHeuZ91SG94wXYxQLKAqMx1EHaUssU8N6cz8JKrJTVvp5cA4nbGgFLZKOEvqFuHq1mgcaFm71NvcOui2BaVRfUbl64shd'); INSERT INTO t (a, b) VALUES ('T3V0h0kB7Z43jqSTiaI','czB9GVLA611e55NpukvYdrc4UOTWiIFEfvtvXcTMbn8TFqhie2D3gRzU5AjZoxtSSMMMcsWl0wnsoWtK2tfGQCRgayc9pv0t4NRCFwlH2Un3cpiiQdW59gYphjYXlE1q5ABTuPPv32nb0Ws5deOTxIc11qWPfYnHeuZ91SG94wXYxQLKAqMx1EHaUssU8N6cz8JKrJTVvp5cA4nbGgFLZKOEvqFuHq1mgcaFm71NvcOui2BaVRfUbl64shd');
...@@ -54,10 +50,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -54,10 +50,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYTEXT , b TINYTEXT ); CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('1pR3ukt4Ue1ddcv7l7cdLUtIvUrc','3KWeNropDQVN59sEvm1JNuyNGawl467fqCbpsyxZi9SsxJ8D0WLw6TdCCs2E7TOwtSD5g5rvVFelfdMCe59d9jJ06jpriiPl'); INSERT INTO t (a, b) VALUES ('1pR3ukt4Ue1ddcv7l7cdLUtIvUrc','3KWeNropDQVN59sEvm1JNuyNGawl467fqCbpsyxZi9SsxJ8D0WLw6TdCCs2E7TOwtSD5g5rvVFelfdMCe59d9jJ06jpriiPl');
...@@ -83,10 +75,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -83,10 +75,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (v VARCHAR(32) DEFAULT '', a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('ZCcIgA','TgeHsGJbqV0cK6PHoJXwkuk3KeExgjHUouDUAHtuyIrkkegjoIkgZk8Ue77o3Rb4bLsf674Xs0OuzlXFOcaSqU'); INSERT INTO t (a, b) VALUES ('ZCcIgA','TgeHsGJbqV0cK6PHoJXwkuk3KeExgjHUouDUAHtuyIrkkegjoIkgZk8Ue77o3Rb4bLsf674Xs0OuzlXFOcaSqU');
...@@ -112,10 +100,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -112,10 +100,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT , b TINYTEXT ); CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('4','8COJIsoEwzuFuY0XobeNMr1uhHotDoFksHC4sKkv3MLMI0Rm1XHKUKkEfnFYeog0y1qbkhyM5OhUhczN4uUH2rwA3BZb00rHLE5cxCFsQqGr3RlAX4uDGshnxozQfi7DL3IlRqYjwy0ItkISRHGYwPpW3CuC3cMSOidb48kt1cqqzy7XWtA93KNpBJhcYxAyPO1on5U5N4fgOl0JOZRvzxR5m5yma378hXl3C5W'); INSERT INTO t (a, b) VALUES ('4','8COJIsoEwzuFuY0XobeNMr1uhHotDoFksHC4sKkv3MLMI0Rm1XHKUKkEfnFYeog0y1qbkhyM5OhUhczN4uUH2rwA3BZb00rHLE5cxCFsQqGr3RlAX4uDGshnxozQfi7DL3IlRqYjwy0ItkISRHGYwPpW3CuC3cMSOidb48kt1cqqzy7XWtA93KNpBJhcYxAyPO1on5U5N4fgOl0JOZRvzxR5m5yma378hXl3C5W');
...@@ -141,10 +125,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -141,10 +125,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('zhUb9Hu5Wlv2kL3j9w','C4AQe2AZNlGu8CVuqp7Cygd1bF9pm7W6dBTdd6tAfe6Ac1GscSl'); INSERT INTO t (a, b) VALUES ('zhUb9Hu5Wlv2kL3j9w','C4AQe2AZNlGu8CVuqp7Cygd1bF9pm7W6dBTdd6tAfe6Ac1GscSl');
...@@ -170,10 +150,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -170,10 +150,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0, a TINYTEXT , b TINYTEXT ); CREATE TABLE t (f INT DEFAULT 0, a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('WdaEkmCiDOrvN5RGfjGGD17','Rv7pU4m11NDa2H2mE89d6ztify9OAlmPs'); INSERT INTO t (a, b) VALUES ('WdaEkmCiDOrvN5RGfjGGD17','Rv7pU4m11NDa2H2mE89d6ztify9OAlmPs');
...@@ -199,10 +175,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -199,10 +175,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (f INT DEFAULT 0, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (f INT DEFAULT 0, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('2ajs1f82ZmqPhqXBpaH','N8Xvw6uv9i7oZJZ'); INSERT INTO t (a, b) VALUES ('2ajs1f82ZmqPhqXBpaH','N8Xvw6uv9i7oZJZ');
...@@ -228,10 +200,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -228,10 +200,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYTEXT , b TINYTEXT ); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('EznArw','vo6j2j3be9KBIlTHlP4bUwWKoZhbVrl6y8utY7cLGtoAMNy7xQSUjbQk7q1eWkzqjhbNqxWcROhC3YNQpizFk8rKTX9cCMuiGrDVBaVnHEaIQ5xhOrao1RDIYctYYn'); INSERT INTO t (a, b) VALUES ('EznArw','vo6j2j3be9KBIlTHlP4bUwWKoZhbVrl6y8utY7cLGtoAMNy7xQSUjbQk7q1eWkzqjhbNqxWcROhC3YNQpizFk8rKTX9cCMuiGrDVBaVnHEaIQ5xhOrao1RDIYctYYn');
...@@ -257,10 +225,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -257,10 +225,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '', a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('lL','MjEImtvTwSkiFTBkVCjUv7ns1KFK6e7SQucDDCrKxVF9DLGnhNP1a4nnT9ix3PfdlCn08iu9FbMV0mVCisdmGhXgXxzjohZwBGrN54fLsg7L6h5O3KMvv2XeUB6AenAmZsKa6ZpRKYJiWmq64XLLocD9vjLDnRQ1Op10YuqBe08eNi0QU8oNJuMqnCrVLbw1a8bVrX6CvTRGETBPj4BWb2nyLCIQLZ2brn'); INSERT INTO t (a, b) VALUES ('lL','MjEImtvTwSkiFTBkVCjUv7ns1KFK6e7SQucDDCrKxVF9DLGnhNP1a4nnT9ix3PfdlCn08iu9FbMV0mVCisdmGhXgXxzjohZwBGrN54fLsg7L6h5O3KMvv2XeUB6AenAmZsKa6ZpRKYJiWmq64XLLocD9vjLDnRQ1Op10YuqBe08eNi0QU8oNJuMqnCrVLbw1a8bVrX6CvTRGETBPj4BWb2nyLCIQLZ2brn');
...@@ -286,10 +250,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -286,10 +250,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT , b TINYTEXT ); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('1N585BBQh0iEW93L','l6Rgi1dWfXEDfaibVhy8R3DvrDLuelXzLrwGW1FEQx2BgWGfzomHJfhGfzSVSqszNdifYmCyRheks'); INSERT INTO t (a, b) VALUES ('1N585BBQh0iEW93L','l6Rgi1dWfXEDfaibVhy8R3DvrDLuelXzLrwGW1FEQx2BgWGfzomHJfhGfzSVSqszNdifYmCyRheks');
...@@ -315,10 +275,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -315,10 +275,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (f INT DEFAULT 0, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('HhNGpHAPWQ8','0Q5hSkbZLKKzavHJ7sZ7S9GKzds4BhnE'); INSERT INTO t (a, b) VALUES ('HhNGpHAPWQ8','0Q5hSkbZLKKzavHJ7sZ7S9GKzds4BhnE');
...@@ -344,10 +300,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -344,10 +300,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYTEXT , b TINYTEXT ); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('8P49xApofl0PNKnNcmj','DhRrz27wl2mOIoYOvZb6UCzr4u4rxwCoAFrMuM92y3hFjIu0iLUa7xUUZe1F8doEg9nBHcFo5NY4DMm0PNYKpkerTYPmIwE2gnTcCq77SgqgyeM60MdFsnO34MLEEA35Zr3MjeuJ37oGjf6vfSNUpiL0UAmhfWwfO6tLqrHtUtJhNVMvIS1pdahZJTV'); INSERT INTO t (a, b) VALUES ('8P49xApofl0PNKnNcmj','DhRrz27wl2mOIoYOvZb6UCzr4u4rxwCoAFrMuM92y3hFjIu0iLUa7xUUZe1F8doEg9nBHcFo5NY4DMm0PNYKpkerTYPmIwE2gnTcCq77SgqgyeM60MdFsnO34MLEEA35Zr3MjeuJ37oGjf6vfSNUpiL0UAmhfWwfO6tLqrHtUtJhNVMvIS1pdahZJTV');
...@@ -373,10 +325,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -373,10 +325,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('hPDlpbufOe8shVHIYUo','W6SMefVaBzMArHmqFdw3Z9OAuZHMjfyQ'); INSERT INTO t (a, b) VALUES ('hPDlpbufOe8shVHIYUo','W6SMefVaBzMArHmqFdw3Z9OAuZHMjfyQ');
...@@ -402,10 +350,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -402,10 +350,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYTEXT , b TINYTEXT ); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('rmCC1RZ8fu9Zq6DwO','0vLyV4LMJuHlwPG5245J5yVDuapHQWy3vqHdlTQkQGqJWcFUz0kDWL38DeyT8nQ5WLbDqGHREisps27bINC3Ew5p7Uuf4XBleBD12f6K7g59gWBnYxd6ZsYcwcphcMWq2c8bQmbwLy1fHQ2IJaCTTAjWGd4wBHcXyg5ogi9lomnebSeI1ox1HfjWI0H6GAdsHGibXcY7QPUgVOKA5BB7jrIVpj92YSW1YAbIJLSfncht4iUlSRdyA'); INSERT INTO t (a, b) VALUES ('rmCC1RZ8fu9Zq6DwO','0vLyV4LMJuHlwPG5245J5yVDuapHQWy3vqHdlTQkQGqJWcFUz0kDWL38DeyT8nQ5WLbDqGHREisps27bINC3Ew5p7Uuf4XBleBD12f6K7g59gWBnYxd6ZsYcwcphcMWq2c8bQmbwLy1fHQ2IJaCTTAjWGd4wBHcXyg5ogi9lomnebSeI1ox1HfjWI0H6GAdsHGibXcY7QPUgVOKA5BB7jrIVpj92YSW1YAbIJLSfncht4iUlSRdyA');
...@@ -433,10 +377,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -433,10 +377,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '', a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('84XkENBIpBOSIA9X','LLq2mrmKvbMURprQVllY6xdk1TyqLir7dVBLIcXMsroq60cdRUdMKNHhsMReUaIovhRPz9K20MJ45FRldiEcPig0YPQpPRchf8or8X9FDk4dnLBstqPdWPRN4yKcpQQ8d'); INSERT INTO t (a, b) VALUES ('84XkENBIpBOSIA9X','LLq2mrmKvbMURprQVllY6xdk1TyqLir7dVBLIcXMsroq60cdRUdMKNHhsMReUaIovhRPz9K20MJ45FRldiEcPig0YPQpPRchf8or8X9FDk4dnLBstqPdWPRN4yKcpQQ8d');
...@@ -462,10 +402,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -462,10 +402,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT , b TINYTEXT ); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT , b TINYTEXT );
INSERT INTO t (a, b) VALUES ('9jLJ0ZIO55FP61poxeO4L','qDlG0rPg6pQ7scksQFOqxTGZIaOHz90VSV78nGu0wQQzXIEBiNp4Kq7hDgs1eW5ot9uKyvz'); INSERT INTO t (a, b) VALUES ('9jLJ0ZIO55FP61poxeO4L','qDlG0rPg6pQ7scksQFOqxTGZIaOHz90VSV78nGu0wQQzXIEBiNp4Kq7hDgs1eW5ot9uKyvz');
...@@ -491,10 +427,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ; ...@@ -491,10 +427,6 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT ;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT ; ALTER TABLE t CHANGE COLUMN b b LONGTEXT ;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT ;
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;
CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL); CREATE TABLE t (f INT DEFAULT 0 NOT NULL, v VARCHAR(32) DEFAULT '' NOT NULL, a TINYTEXT NOT NULL, b TINYTEXT NOT NULL);
INSERT INTO t (a, b) VALUES ('Id','eKhtNKGQb2m0JpvyzVayefC7fAbhKzbR0wVzLCarlBdjxgEfVx4Fbm8C0uzQn9UuSsL5unnHgR2DQ9bzpbXY1ib7q5'); INSERT INTO t (a, b) VALUES ('Id','eKhtNKGQb2m0JpvyzVayefC7fAbhKzbR0wVzLCarlBdjxgEfVx4Fbm8C0uzQn9UuSsL5unnHgR2DQ9bzpbXY1ib7q5');
...@@ -520,8 +452,4 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL; ...@@ -520,8 +452,4 @@ ALTER TABLE ti CHANGE COLUMN b b MEDIUMTEXT NOT NULL;
ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE t CHANGE COLUMN b b LONGTEXT NOT NULL;
ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL; ALTER TABLE ti CHANGE COLUMN b b LONGTEXT NOT NULL;
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 @@ 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;
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.
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.
...@@ -10,17 +10,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -10,17 +10,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa; alter table foo drop column aa;
alter table bar drop column aa; alter table bar drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -32,17 +24,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -32,17 +24,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb; alter table foo drop column bb;
alter table bar drop column bb; alter table bar drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -54,17 +38,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -54,17 +38,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc; alter table foo drop column cc;
alter table bar drop column cc; alter table bar drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -76,17 +52,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -76,17 +52,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd; alter table foo drop column dd;
alter table bar drop column dd; alter table bar drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -98,17 +66,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -98,17 +66,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb; alter table foo drop column aa, drop column bb;
alter table bar drop column aa, drop column bb; alter table bar drop column aa, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -120,17 +80,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -120,17 +80,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column cc; alter table foo drop column aa, drop column cc;
alter table bar drop column aa, drop column cc; alter table bar drop column aa, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -142,17 +94,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -142,17 +94,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column dd; alter table foo drop column aa, drop column dd;
alter table bar drop column aa, drop column dd; alter table bar drop column aa, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -164,17 +108,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -164,17 +108,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column aa; alter table foo drop column bb, drop column aa;
alter table bar drop column bb, drop column aa; alter table bar drop column bb, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -186,17 +122,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -186,17 +122,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column cc; alter table foo drop column bb, drop column cc;
alter table bar drop column bb, drop column cc; alter table bar drop column bb, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -208,17 +136,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -208,17 +136,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column dd; alter table foo drop column bb, drop column dd;
alter table bar drop column bb, drop column dd; alter table bar drop column bb, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -230,17 +150,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -230,17 +150,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column aa; alter table foo drop column cc, drop column aa;
alter table bar drop column cc, drop column aa; alter table bar drop column cc, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -252,17 +164,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -252,17 +164,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column bb; alter table foo drop column cc, drop column bb;
alter table bar drop column cc, drop column bb; alter table bar drop column cc, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -274,17 +178,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -274,17 +178,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column dd; alter table foo drop column cc, drop column dd;
alter table bar drop column cc, drop column dd; alter table bar drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -296,17 +192,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -296,17 +192,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column aa; alter table foo drop column dd, drop column aa;
alter table bar drop column dd, drop column aa; alter table bar drop column dd, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -318,17 +206,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -318,17 +206,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column bb; alter table foo drop column dd, drop column bb;
alter table bar drop column dd, drop column bb; alter table bar drop column dd, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -340,17 +220,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -340,17 +220,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column cc; alter table foo drop column dd, drop column cc;
alter table bar drop column dd, drop column cc; alter table bar drop column dd, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -362,17 +234,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -362,17 +234,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb, drop column cc; alter table foo drop column aa, drop column bb, drop column cc;
alter table bar drop column aa, drop column bb, drop column cc; alter table bar drop column aa, drop column bb, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -384,17 +248,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -384,17 +248,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb, drop column dd; alter table foo drop column aa, drop column bb, drop column dd;
alter table bar drop column aa, drop column bb, drop column dd; alter table bar drop column aa, drop column bb, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -406,17 +262,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -406,17 +262,9 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column cc, drop column dd; alter table foo drop column aa, drop column cc, drop column dd;
alter table bar drop column aa, drop column cc, drop column dd; alter table bar drop column aa, drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -428,16 +276,8 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds"); ...@@ -428,16 +276,8 @@ insert into foo values (NULL,"oifds",NULL,"fdsjfds");
insert into foo values ("rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column cc, drop column dd; alter table foo drop column bb, drop column cc, drop column dd;
alter table bar drop column bb, drop column cc, drop column dd; alter table bar drop column bb, drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
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.
...@@ -10,17 +10,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -10,17 +10,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a; alter table foo drop column a;
alter table bar drop column a; alter table bar drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -32,17 +24,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -32,17 +24,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b; alter table foo drop column b;
alter table bar drop column b; alter table bar drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -54,17 +38,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -54,17 +38,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c; alter table foo drop column c;
alter table bar drop column c; alter table bar drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -76,17 +52,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -76,17 +52,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -98,17 +66,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -98,17 +66,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b; alter table foo drop column a, drop column b;
alter table bar drop column a, drop column b; alter table bar drop column a, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -120,17 +80,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -120,17 +80,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column c; alter table foo drop column a, drop column c;
alter table bar drop column a, drop column c; alter table bar drop column a, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -142,17 +94,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -142,17 +94,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column d; alter table foo drop column a, drop column d;
alter table bar drop column a, drop column d; alter table bar drop column a, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -164,17 +108,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -164,17 +108,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column a; alter table foo drop column b, drop column a;
alter table bar drop column b, drop column a; alter table bar drop column b, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -186,17 +122,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -186,17 +122,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column c; alter table foo drop column b, drop column c;
alter table bar drop column b, drop column c; alter table bar drop column b, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -208,17 +136,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -208,17 +136,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column d; alter table foo drop column b, drop column d;
alter table bar drop column b, drop column d; alter table bar drop column b, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -230,17 +150,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -230,17 +150,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column a; alter table foo drop column c, drop column a;
alter table bar drop column c, drop column a; alter table bar drop column c, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -252,17 +164,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -252,17 +164,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column b; alter table foo drop column c, drop column b;
alter table bar drop column c, drop column b; alter table bar drop column c, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -274,17 +178,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -274,17 +178,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column d; alter table foo drop column c, drop column d;
alter table bar drop column c, drop column d; alter table bar drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -296,17 +192,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -296,17 +192,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column a; alter table foo drop column d, drop column a;
alter table bar drop column d, drop column a; alter table bar drop column d, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -318,17 +206,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -318,17 +206,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column b; alter table foo drop column d, drop column b;
alter table bar drop column d, drop column b; alter table bar drop column d, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -340,17 +220,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -340,17 +220,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column c; alter table foo drop column d, drop column c;
alter table bar drop column d, drop column c; alter table bar drop column d, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -362,17 +234,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -362,17 +234,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column c; alter table foo drop column a, drop column b, drop column c;
alter table bar drop column a, drop column b, drop column c; alter table bar drop column a, drop column b, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -384,17 +248,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -384,17 +248,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column d; alter table foo drop column a, drop column b, drop column d;
alter table bar drop column a, drop column b, drop column d; alter table bar drop column a, drop column b, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -406,17 +262,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -406,17 +262,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column c, drop column d; alter table foo drop column a, drop column c, drop column d;
alter table bar drop column a, drop column c, drop column d; alter table bar drop column a, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint) engine=TokuDB;
...@@ -428,16 +276,8 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -428,16 +276,8 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column c, drop column d; alter table foo drop column b, drop column c, drop column d;
alter table bar drop column b, drop column c, drop column d; alter table bar drop column b, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -10,17 +10,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -10,17 +10,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa; alter table foo drop column aaa;
alter table bar drop column aaa; alter table bar drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -32,17 +24,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -32,17 +24,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb; alter table foo drop column bbb;
alter table bar drop column bbb; alter table bar drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -54,17 +38,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -54,17 +38,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc; alter table foo drop column ccc;
alter table bar drop column ccc; alter table bar drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -76,17 +52,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -76,17 +52,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd; alter table foo drop column ddd;
alter table bar drop column ddd; alter table bar drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -98,17 +66,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -98,17 +66,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb; alter table foo drop column aaa, drop column bbb;
alter table bar drop column aaa, drop column bbb; alter table bar drop column aaa, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -120,17 +80,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -120,17 +80,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ccc; alter table foo drop column aaa, drop column ccc;
alter table bar drop column aaa, drop column ccc; alter table bar drop column aaa, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -142,17 +94,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -142,17 +94,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ddd; alter table foo drop column aaa, drop column ddd;
alter table bar drop column aaa, drop column ddd; alter table bar drop column aaa, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -164,17 +108,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -164,17 +108,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column aaa; alter table foo drop column bbb, drop column aaa;
alter table bar drop column bbb, drop column aaa; alter table bar drop column bbb, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -186,17 +122,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -186,17 +122,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ccc; alter table foo drop column bbb, drop column ccc;
alter table bar drop column bbb, drop column ccc; alter table bar drop column bbb, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -208,17 +136,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -208,17 +136,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ddd; alter table foo drop column bbb, drop column ddd;
alter table bar drop column bbb, drop column ddd; alter table bar drop column bbb, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -230,17 +150,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -230,17 +150,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column aaa; alter table foo drop column ccc, drop column aaa;
alter table bar drop column ccc, drop column aaa; alter table bar drop column ccc, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -252,17 +164,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -252,17 +164,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column bbb; alter table foo drop column ccc, drop column bbb;
alter table bar drop column ccc, drop column bbb; alter table bar drop column ccc, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -274,17 +178,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -274,17 +178,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column ddd; alter table foo drop column ccc, drop column ddd;
alter table bar drop column ccc, drop column ddd; alter table bar drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -296,17 +192,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -296,17 +192,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column aaa; alter table foo drop column ddd, drop column aaa;
alter table bar drop column ddd, drop column aaa; alter table bar drop column ddd, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -318,17 +206,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -318,17 +206,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column bbb; alter table foo drop column ddd, drop column bbb;
alter table bar drop column ddd, drop column bbb; alter table bar drop column ddd, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -340,17 +220,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -340,17 +220,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column ccc; alter table foo drop column ddd, drop column ccc;
alter table bar drop column ddd, drop column ccc; alter table bar drop column ddd, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -362,17 +234,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -362,17 +234,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb, drop column ccc; alter table foo drop column aaa, drop column bbb, drop column ccc;
alter table bar drop column aaa, drop column bbb, drop column ccc; alter table bar drop column aaa, drop column bbb, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -384,17 +248,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -384,17 +248,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb, drop column ddd; alter table foo drop column aaa, drop column bbb, drop column ddd;
alter table bar drop column aaa, drop column bbb, drop column ddd; alter table bar drop column aaa, drop column bbb, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -406,17 +262,9 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -406,17 +262,9 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ccc, drop column ddd; alter table foo drop column aaa, drop column ccc, drop column ddd;
alter table bar drop column aaa, drop column ccc, drop column ddd; alter table bar drop column aaa, drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -428,16 +276,8 @@ insert into foo values (NULL,12345678987,NULL,1); ...@@ -428,16 +276,8 @@ insert into foo values (NULL,12345678987,NULL,1);
insert into foo values (2,20,'1999-11-11',0); insert into foo values (2,20,'1999-11-11',0);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ccc, drop column ddd; alter table foo drop column bbb, drop column ccc, drop column ddd;
alter table bar drop column bbb, drop column ccc, drop column ddd; alter table bar drop column bbb, drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
...@@ -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
......
...@@ -10,149 +10,65 @@ insert into foo values ("BIGGER",NULL,"smaller",NULL); ...@@ -10,149 +10,65 @@ insert into foo values ("BIGGER",NULL,"smaller",NULL);
insert into foo values ("aaaaaaaaaa","bbbbbbbbbb","cccccccccc","dddddddddd"); insert into foo values ("aaaaaaaaaa","bbbbbbbbbb","cccccccccc","dddddddddd");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo add column e varchar(3000) default NULL; alter table foo add column e varchar(3000) default NULL;
alter table bar add column e varchar(3000) default NULL; alter table bar add column e varchar(3000) default NULL;
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) default NULL first; alter table foo add column e varchar(3000) default NULL first;
alter table bar add column e varchar(3000) default NULL first; alter table bar add column e varchar(3000) default NULL 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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) default NULL after b; alter table foo add column e varchar(3000) default NULL after b;
alter table bar add column e varchar(3000) default NULL after b; alter table bar add column e varchar(3000) default NULL after b;
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) default "abracadabraabracadabra"; alter table foo add column e varchar(3000) default "abracadabraabracadabra";
alter table bar add column e varchar(3000) default "abracadabraabracadabra"; alter table bar add column e varchar(3000) default "abracadabraabracadabra";
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) default "abracadabraabracadabra" first; alter table foo add column e varchar(3000) default "abracadabraabracadabra" first;
alter table bar add column e varchar(3000) default "abracadabraabracadabra" first; alter table bar add column e varchar(3000) default "abracadabraabracadabra" 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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) default "abracadabraabracadabra" after b; alter table foo add column e varchar(3000) default "abracadabraabracadabra" after b;
alter table bar add column e varchar(3000) default "abracadabraabracadabra" after b; alter table bar add column e varchar(3000) default "abracadabraabracadabra" after b;
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) default NULL after b; alter table foo add column e varchar(3000) default NULL after b;
alter table bar add column e varchar(3000) default NULL after b; alter table bar add column e varchar(3000) default NULL after b;
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) NOT NULL default "abracadabraabracadabra"; alter table foo add column e varchar(3000) NOT NULL default "abracadabraabracadabra";
alter table bar add column e varchar(3000) NOT NULL default "abracadabraabracadabra"; alter table bar add column e varchar(3000) NOT NULL default "abracadabraabracadabra";
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) NOT NULL default "abracadabraabracadabra" first; alter table foo add column e varchar(3000) NOT NULL default "abracadabraabracadabra" first;
alter table bar add column e varchar(3000) NOT NULL default "abracadabraabracadabra" first; alter table bar add column e varchar(3000) NOT NULL default "abracadabraabracadabra" 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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e varchar(3000) NOT NULL default "abracadabraabracadabra" after b; alter table foo add column e varchar(3000) NOT NULL default "abracadabraabracadabra" after b;
alter table bar add column e varchar(3000) NOT NULL default "abracadabraabracadabra" after b; alter table bar add column e varchar(3000) NOT NULL default "abracadabraabracadabra" after b;
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
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.
...@@ -22,17 +22,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -22,17 +22,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a; alter table foo drop column a;
alter table bar drop column a; alter table bar drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -56,17 +48,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -56,17 +48,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b; alter table foo drop column b;
alter table bar drop column b; alter table bar drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -90,17 +74,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -90,17 +74,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c; alter table foo drop column c;
alter table bar drop column c; alter table bar drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -124,17 +100,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -124,17 +100,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -158,17 +126,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -158,17 +126,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa; alter table foo drop column aa;
alter table bar drop column aa; alter table bar drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -192,17 +152,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -192,17 +152,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb; alter table foo drop column bb;
alter table bar drop column bb; alter table bar drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -226,17 +178,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -226,17 +178,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc; alter table foo drop column cc;
alter table bar drop column cc; alter table bar drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -260,17 +204,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -260,17 +204,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd; alter table foo drop column dd;
alter table bar drop column dd; alter table bar drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -294,17 +230,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -294,17 +230,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b; alter table foo drop column a, drop column b;
alter table bar drop column a, drop column b; alter table bar drop column a, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -328,17 +256,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -328,17 +256,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column c; alter table foo drop column a, drop column c;
alter table bar drop column a, drop column c; alter table bar drop column a, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -362,17 +282,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -362,17 +282,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column d; alter table foo drop column a, drop column d;
alter table bar drop column a, drop column d; alter table bar drop column a, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -396,17 +308,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -396,17 +308,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column aa; alter table foo drop column a, drop column aa;
alter table bar drop column a, drop column aa; alter table bar drop column a, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -430,17 +334,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -430,17 +334,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column bb; alter table foo drop column a, drop column bb;
alter table bar drop column a, drop column bb; alter table bar drop column a, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -464,17 +360,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -464,17 +360,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column cc; alter table foo drop column a, drop column cc;
alter table bar drop column a, drop column cc; alter table bar drop column a, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -498,17 +386,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -498,17 +386,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column dd; alter table foo drop column a, drop column dd;
alter table bar drop column a, drop column dd; alter table bar drop column a, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -532,17 +412,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -532,17 +412,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column a; alter table foo drop column b, drop column a;
alter table bar drop column b, drop column a; alter table bar drop column b, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -566,17 +438,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -566,17 +438,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column c; alter table foo drop column b, drop column c;
alter table bar drop column b, drop column c; alter table bar drop column b, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -600,17 +464,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -600,17 +464,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column d; alter table foo drop column b, drop column d;
alter table bar drop column b, drop column d; alter table bar drop column b, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -634,17 +490,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -634,17 +490,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column aa; alter table foo drop column b, drop column aa;
alter table bar drop column b, drop column aa; alter table bar drop column b, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -668,17 +516,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -668,17 +516,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column bb; alter table foo drop column b, drop column bb;
alter table bar drop column b, drop column bb; alter table bar drop column b, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -702,17 +542,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -702,17 +542,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column cc; alter table foo drop column b, drop column cc;
alter table bar drop column b, drop column cc; alter table bar drop column b, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -736,17 +568,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -736,17 +568,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column dd; alter table foo drop column b, drop column dd;
alter table bar drop column b, drop column dd; alter table bar drop column b, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -770,17 +594,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -770,17 +594,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column a; alter table foo drop column c, drop column a;
alter table bar drop column c, drop column a; alter table bar drop column c, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -804,17 +620,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -804,17 +620,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column b; alter table foo drop column c, drop column b;
alter table bar drop column c, drop column b; alter table bar drop column c, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -838,17 +646,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -838,17 +646,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column d; alter table foo drop column c, drop column d;
alter table bar drop column c, drop column d; alter table bar drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -872,17 +672,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -872,17 +672,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column aa; alter table foo drop column c, drop column aa;
alter table bar drop column c, drop column aa; alter table bar drop column c, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -906,17 +698,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -906,17 +698,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column bb; alter table foo drop column c, drop column bb;
alter table bar drop column c, drop column bb; alter table bar drop column c, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -940,17 +724,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -940,17 +724,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column cc; alter table foo drop column c, drop column cc;
alter table bar drop column c, drop column cc; alter table bar drop column c, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -974,17 +750,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -974,17 +750,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column dd; alter table foo drop column c, drop column dd;
alter table bar drop column c, drop column dd; alter table bar drop column c, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1008,17 +776,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1008,17 +776,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column a; alter table foo drop column d, drop column a;
alter table bar drop column d, drop column a; alter table bar drop column d, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1042,17 +802,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1042,17 +802,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column b; alter table foo drop column d, drop column b;
alter table bar drop column d, drop column b; alter table bar drop column d, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1076,17 +828,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1076,17 +828,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column c; alter table foo drop column d, drop column c;
alter table bar drop column d, drop column c; alter table bar drop column d, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1110,17 +854,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1110,17 +854,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column aa; alter table foo drop column d, drop column aa;
alter table bar drop column d, drop column aa; alter table bar drop column d, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1144,17 +880,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1144,17 +880,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column bb; alter table foo drop column d, drop column bb;
alter table bar drop column d, drop column bb; alter table bar drop column d, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1178,17 +906,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1178,17 +906,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column cc; alter table foo drop column d, drop column cc;
alter table bar drop column d, drop column cc; alter table bar drop column d, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1212,17 +932,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1212,17 +932,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column dd; alter table foo drop column d, drop column dd;
alter table bar drop column d, drop column dd; alter table bar drop column d, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1246,17 +958,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1246,17 +958,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column a; alter table foo drop column aa, drop column a;
alter table bar drop column aa, drop column a; alter table bar drop column aa, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1280,17 +984,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1280,17 +984,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column b; alter table foo drop column aa, drop column b;
alter table bar drop column aa, drop column b; alter table bar drop column aa, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1314,17 +1010,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1314,17 +1010,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column c; alter table foo drop column aa, drop column c;
alter table bar drop column aa, drop column c; alter table bar drop column aa, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1348,17 +1036,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1348,17 +1036,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column d; alter table foo drop column aa, drop column d;
alter table bar drop column aa, drop column d; alter table bar drop column aa, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1382,17 +1062,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1382,17 +1062,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb; alter table foo drop column aa, drop column bb;
alter table bar drop column aa, drop column bb; alter table bar drop column aa, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1416,17 +1088,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1416,17 +1088,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column cc; alter table foo drop column aa, drop column cc;
alter table bar drop column aa, drop column cc; alter table bar drop column aa, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1450,17 +1114,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1450,17 +1114,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column dd; alter table foo drop column aa, drop column dd;
alter table bar drop column aa, drop column dd; alter table bar drop column aa, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1484,17 +1140,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1484,17 +1140,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column a; alter table foo drop column bb, drop column a;
alter table bar drop column bb, drop column a; alter table bar drop column bb, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1518,17 +1166,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1518,17 +1166,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column b; alter table foo drop column bb, drop column b;
alter table bar drop column bb, drop column b; alter table bar drop column bb, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1552,17 +1192,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1552,17 +1192,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column c; alter table foo drop column bb, drop column c;
alter table bar drop column bb, drop column c; alter table bar drop column bb, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1586,17 +1218,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1586,17 +1218,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column d; alter table foo drop column bb, drop column d;
alter table bar drop column bb, drop column d; alter table bar drop column bb, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1620,17 +1244,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1620,17 +1244,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column aa; alter table foo drop column bb, drop column aa;
alter table bar drop column bb, drop column aa; alter table bar drop column bb, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1654,17 +1270,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1654,17 +1270,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column cc; alter table foo drop column bb, drop column cc;
alter table bar drop column bb, drop column cc; alter table bar drop column bb, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1688,17 +1296,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1688,17 +1296,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column dd; alter table foo drop column bb, drop column dd;
alter table bar drop column bb, drop column dd; alter table bar drop column bb, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1722,17 +1322,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1722,17 +1322,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column a; alter table foo drop column cc, drop column a;
alter table bar drop column cc, drop column a; alter table bar drop column cc, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1756,17 +1348,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1756,17 +1348,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column b; alter table foo drop column cc, drop column b;
alter table bar drop column cc, drop column b; alter table bar drop column cc, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1790,17 +1374,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1790,17 +1374,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column c; alter table foo drop column cc, drop column c;
alter table bar drop column cc, drop column c; alter table bar drop column cc, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1824,17 +1400,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1824,17 +1400,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column d; alter table foo drop column cc, drop column d;
alter table bar drop column cc, drop column d; alter table bar drop column cc, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1858,17 +1426,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1858,17 +1426,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column aa; alter table foo drop column cc, drop column aa;
alter table bar drop column cc, drop column aa; alter table bar drop column cc, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1892,17 +1452,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1892,17 +1452,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column bb; alter table foo drop column cc, drop column bb;
alter table bar drop column cc, drop column bb; alter table bar drop column cc, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1926,17 +1478,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1926,17 +1478,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column dd; alter table foo drop column cc, drop column dd;
alter table bar drop column cc, drop column dd; alter table bar drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1960,17 +1504,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1960,17 +1504,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column a; alter table foo drop column dd, drop column a;
alter table bar drop column dd, drop column a; alter table bar drop column dd, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -1994,17 +1530,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1994,17 +1530,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column b; alter table foo drop column dd, drop column b;
alter table bar drop column dd, drop column b; alter table bar drop column dd, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2028,17 +1556,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2028,17 +1556,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column c; alter table foo drop column dd, drop column c;
alter table bar drop column dd, drop column c; alter table bar drop column dd, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2062,17 +1582,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2062,17 +1582,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column d; alter table foo drop column dd, drop column d;
alter table bar drop column dd, drop column d; alter table bar drop column dd, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2096,17 +1608,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2096,17 +1608,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column aa; alter table foo drop column dd, drop column aa;
alter table bar drop column dd, drop column aa; alter table bar drop column dd, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2130,17 +1634,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2130,17 +1634,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column bb; alter table foo drop column dd, drop column bb;
alter table bar drop column dd, drop column bb; alter table bar drop column dd, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2164,17 +1660,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2164,17 +1660,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column cc; alter table foo drop column dd, drop column cc;
alter table bar drop column dd, drop column cc; alter table bar drop column dd, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2198,17 +1686,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2198,17 +1686,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column c; alter table foo drop column a, drop column b, drop column c;
alter table bar drop column a, drop column b, drop column c; alter table bar drop column a, drop column b, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2232,17 +1712,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2232,17 +1712,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column d; alter table foo drop column a, drop column b, drop column d;
alter table bar drop column a, drop column b, drop column d; alter table bar drop column a, drop column b, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2266,17 +1738,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2266,17 +1738,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column c, drop column d; alter table foo drop column a, drop column c, drop column d;
alter table bar drop column a, drop column c, drop column d; alter table bar drop column a, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2300,17 +1764,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2300,17 +1764,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column c, drop column d; alter table foo drop column b, drop column c, drop column d;
alter table bar drop column b, drop column c, drop column d; alter table bar drop column b, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2334,17 +1790,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2334,17 +1790,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column c, drop column d; alter table foo drop column a, drop column b, drop column c, drop column d;
alter table bar drop column a, drop column b, drop column c, drop column d; alter table bar drop column a, drop column b, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aa blob, bb longblob, cc tinyblob, dd mediumblob) engine=TokuDB;
...@@ -2368,16 +1816,8 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2368,16 +1816,8 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb, drop column cc, drop column dd; alter table foo drop column aa, drop column bb, drop column cc, drop column dd;
alter table bar drop column aa, drop column bb, drop column cc, drop column dd; alter table bar drop column aa, drop column bb, drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
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.
...@@ -22,17 +22,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -22,17 +22,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a; alter table foo drop column a;
alter table bar drop column a; alter table bar drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -56,17 +48,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -56,17 +48,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b; alter table foo drop column b;
alter table bar drop column b; alter table bar drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -90,17 +74,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -90,17 +74,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c; alter table foo drop column c;
alter table bar drop column c; alter table bar drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -124,17 +100,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -124,17 +100,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -158,17 +126,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -158,17 +126,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa; alter table foo drop column aaa;
alter table bar drop column aaa; alter table bar drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -192,17 +152,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -192,17 +152,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb; alter table foo drop column bbb;
alter table bar drop column bbb; alter table bar drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -226,17 +178,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -226,17 +178,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc; alter table foo drop column ccc;
alter table bar drop column ccc; alter table bar drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -260,17 +204,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -260,17 +204,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd; alter table foo drop column ddd;
alter table bar drop column ddd; alter table bar drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -294,17 +230,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -294,17 +230,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b; alter table foo drop column a, drop column b;
alter table bar drop column a, drop column b; alter table bar drop column a, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -328,17 +256,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -328,17 +256,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column c; alter table foo drop column a, drop column c;
alter table bar drop column a, drop column c; alter table bar drop column a, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -362,17 +282,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -362,17 +282,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column d; alter table foo drop column a, drop column d;
alter table bar drop column a, drop column d; alter table bar drop column a, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -396,17 +308,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -396,17 +308,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column aaa; alter table foo drop column a, drop column aaa;
alter table bar drop column a, drop column aaa; alter table bar drop column a, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -430,17 +334,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -430,17 +334,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column bbb; alter table foo drop column a, drop column bbb;
alter table bar drop column a, drop column bbb; alter table bar drop column a, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -464,17 +360,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -464,17 +360,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column ccc; alter table foo drop column a, drop column ccc;
alter table bar drop column a, drop column ccc; alter table bar drop column a, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -498,17 +386,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -498,17 +386,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column ddd; alter table foo drop column a, drop column ddd;
alter table bar drop column a, drop column ddd; alter table bar drop column a, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -532,17 +412,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -532,17 +412,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column a; alter table foo drop column b, drop column a;
alter table bar drop column b, drop column a; alter table bar drop column b, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -566,17 +438,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -566,17 +438,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column c; alter table foo drop column b, drop column c;
alter table bar drop column b, drop column c; alter table bar drop column b, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -600,17 +464,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -600,17 +464,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column d; alter table foo drop column b, drop column d;
alter table bar drop column b, drop column d; alter table bar drop column b, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -634,17 +490,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -634,17 +490,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column aaa; alter table foo drop column b, drop column aaa;
alter table bar drop column b, drop column aaa; alter table bar drop column b, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -668,17 +516,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -668,17 +516,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column bbb; alter table foo drop column b, drop column bbb;
alter table bar drop column b, drop column bbb; alter table bar drop column b, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -702,17 +542,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -702,17 +542,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column ccc; alter table foo drop column b, drop column ccc;
alter table bar drop column b, drop column ccc; alter table bar drop column b, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -736,17 +568,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -736,17 +568,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column ddd; alter table foo drop column b, drop column ddd;
alter table bar drop column b, drop column ddd; alter table bar drop column b, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -770,17 +594,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -770,17 +594,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column a; alter table foo drop column c, drop column a;
alter table bar drop column c, drop column a; alter table bar drop column c, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -804,17 +620,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -804,17 +620,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column b; alter table foo drop column c, drop column b;
alter table bar drop column c, drop column b; alter table bar drop column c, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -838,17 +646,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -838,17 +646,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column d; alter table foo drop column c, drop column d;
alter table bar drop column c, drop column d; alter table bar drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -872,17 +672,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -872,17 +672,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column aaa; alter table foo drop column c, drop column aaa;
alter table bar drop column c, drop column aaa; alter table bar drop column c, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -906,17 +698,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -906,17 +698,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column bbb; alter table foo drop column c, drop column bbb;
alter table bar drop column c, drop column bbb; alter table bar drop column c, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -940,17 +724,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -940,17 +724,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column ccc; alter table foo drop column c, drop column ccc;
alter table bar drop column c, drop column ccc; alter table bar drop column c, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -974,17 +750,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -974,17 +750,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column c, drop column ddd; alter table foo drop column c, drop column ddd;
alter table bar drop column c, drop column ddd; alter table bar drop column c, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1008,17 +776,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1008,17 +776,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column a; alter table foo drop column d, drop column a;
alter table bar drop column d, drop column a; alter table bar drop column d, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1042,17 +802,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1042,17 +802,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column b; alter table foo drop column d, drop column b;
alter table bar drop column d, drop column b; alter table bar drop column d, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1076,17 +828,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1076,17 +828,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column c; alter table foo drop column d, drop column c;
alter table bar drop column d, drop column c; alter table bar drop column d, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1110,17 +854,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1110,17 +854,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column aaa; alter table foo drop column d, drop column aaa;
alter table bar drop column d, drop column aaa; alter table bar drop column d, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1144,17 +880,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1144,17 +880,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column bbb; alter table foo drop column d, drop column bbb;
alter table bar drop column d, drop column bbb; alter table bar drop column d, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1178,17 +906,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1178,17 +906,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column ccc; alter table foo drop column d, drop column ccc;
alter table bar drop column d, drop column ccc; alter table bar drop column d, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1212,17 +932,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1212,17 +932,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column d, drop column ddd; alter table foo drop column d, drop column ddd;
alter table bar drop column d, drop column ddd; alter table bar drop column d, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1246,17 +958,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1246,17 +958,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column a; alter table foo drop column aaa, drop column a;
alter table bar drop column aaa, drop column a; alter table bar drop column aaa, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1280,17 +984,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1280,17 +984,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column b; alter table foo drop column aaa, drop column b;
alter table bar drop column aaa, drop column b; alter table bar drop column aaa, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1314,17 +1010,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1314,17 +1010,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column c; alter table foo drop column aaa, drop column c;
alter table bar drop column aaa, drop column c; alter table bar drop column aaa, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1348,17 +1036,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1348,17 +1036,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column d; alter table foo drop column aaa, drop column d;
alter table bar drop column aaa, drop column d; alter table bar drop column aaa, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1382,17 +1062,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1382,17 +1062,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb; alter table foo drop column aaa, drop column bbb;
alter table bar drop column aaa, drop column bbb; alter table bar drop column aaa, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1416,17 +1088,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1416,17 +1088,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ccc; alter table foo drop column aaa, drop column ccc;
alter table bar drop column aaa, drop column ccc; alter table bar drop column aaa, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1450,17 +1114,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1450,17 +1114,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ddd; alter table foo drop column aaa, drop column ddd;
alter table bar drop column aaa, drop column ddd; alter table bar drop column aaa, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1484,17 +1140,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1484,17 +1140,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column a; alter table foo drop column bbb, drop column a;
alter table bar drop column bbb, drop column a; alter table bar drop column bbb, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1518,17 +1166,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1518,17 +1166,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column b; alter table foo drop column bbb, drop column b;
alter table bar drop column bbb, drop column b; alter table bar drop column bbb, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1552,17 +1192,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1552,17 +1192,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column c; alter table foo drop column bbb, drop column c;
alter table bar drop column bbb, drop column c; alter table bar drop column bbb, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1586,17 +1218,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1586,17 +1218,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column d; alter table foo drop column bbb, drop column d;
alter table bar drop column bbb, drop column d; alter table bar drop column bbb, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1620,17 +1244,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1620,17 +1244,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column aaa; alter table foo drop column bbb, drop column aaa;
alter table bar drop column bbb, drop column aaa; alter table bar drop column bbb, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1654,17 +1270,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1654,17 +1270,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ccc; alter table foo drop column bbb, drop column ccc;
alter table bar drop column bbb, drop column ccc; alter table bar drop column bbb, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1688,17 +1296,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1688,17 +1296,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ddd; alter table foo drop column bbb, drop column ddd;
alter table bar drop column bbb, drop column ddd; alter table bar drop column bbb, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1722,17 +1322,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1722,17 +1322,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column a; alter table foo drop column ccc, drop column a;
alter table bar drop column ccc, drop column a; alter table bar drop column ccc, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1756,17 +1348,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1756,17 +1348,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column b; alter table foo drop column ccc, drop column b;
alter table bar drop column ccc, drop column b; alter table bar drop column ccc, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1790,17 +1374,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1790,17 +1374,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column c; alter table foo drop column ccc, drop column c;
alter table bar drop column ccc, drop column c; alter table bar drop column ccc, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1824,17 +1400,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1824,17 +1400,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column d; alter table foo drop column ccc, drop column d;
alter table bar drop column ccc, drop column d; alter table bar drop column ccc, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1858,17 +1426,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1858,17 +1426,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column aaa; alter table foo drop column ccc, drop column aaa;
alter table bar drop column ccc, drop column aaa; alter table bar drop column ccc, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1892,17 +1452,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1892,17 +1452,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column bbb; alter table foo drop column ccc, drop column bbb;
alter table bar drop column ccc, drop column bbb; alter table bar drop column ccc, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1926,17 +1478,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1926,17 +1478,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column ddd; alter table foo drop column ccc, drop column ddd;
alter table bar drop column ccc, drop column ddd; alter table bar drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1960,17 +1504,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1960,17 +1504,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column a; alter table foo drop column ddd, drop column a;
alter table bar drop column ddd, drop column a; alter table bar drop column ddd, drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1994,17 +1530,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -1994,17 +1530,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column b; alter table foo drop column ddd, drop column b;
alter table bar drop column ddd, drop column b; alter table bar drop column ddd, drop column b;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2028,17 +1556,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2028,17 +1556,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column c; alter table foo drop column ddd, drop column c;
alter table bar drop column ddd, drop column c; alter table bar drop column ddd, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2062,17 +1582,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2062,17 +1582,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column d; alter table foo drop column ddd, drop column d;
alter table bar drop column ddd, drop column d; alter table bar drop column ddd, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2096,17 +1608,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2096,17 +1608,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column aaa; alter table foo drop column ddd, drop column aaa;
alter table bar drop column ddd, drop column aaa; alter table bar drop column ddd, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2130,17 +1634,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2130,17 +1634,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column bbb; alter table foo drop column ddd, drop column bbb;
alter table bar drop column ddd, drop column bbb; alter table bar drop column ddd, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2164,17 +1660,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2164,17 +1660,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column ccc; alter table foo drop column ddd, drop column ccc;
alter table bar drop column ddd, drop column ccc; alter table bar drop column ddd, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2198,17 +1686,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2198,17 +1686,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column c; alter table foo drop column a, drop column b, drop column c;
alter table bar drop column a, drop column b, drop column c; alter table bar drop column a, drop column b, drop column c;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2232,17 +1712,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2232,17 +1712,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column d; alter table foo drop column a, drop column b, drop column d;
alter table bar drop column a, drop column b, drop column d; alter table bar drop column a, drop column b, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2266,17 +1738,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2266,17 +1738,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column c, drop column d; alter table foo drop column a, drop column c, drop column d;
alter table bar drop column a, drop column c, drop column d; alter table bar drop column a, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2300,17 +1764,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2300,17 +1764,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b, drop column c, drop column d; alter table foo drop column b, drop column c, drop column d;
alter table bar drop column b, drop column c, drop column d; alter table bar drop column b, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2334,17 +1790,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2334,17 +1790,9 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column a, drop column b, drop column c, drop column d; alter table foo drop column a, drop column b, drop column c, drop column d;
alter table bar drop column a, drop column b, drop column c, drop column d; alter table bar drop column a, drop column b, drop column c, 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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (a int, b bigint, c date, d tinyint, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2368,16 +1816,8 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds"); ...@@ -2368,16 +1816,8 @@ insert into foo values (2,20,'1999-11-11',0,NULL,"oifds",NULL,"fdsjfds");
insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew"); insert into foo values (2,20,'1999-11-11',0,"rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb, drop column ccc, drop column ddd; alter table foo drop column aaa, drop column bbb, drop column ccc, drop column ddd;
alter table bar drop column aaa, drop column bbb, drop column ccc, drop column ddd; alter table bar drop column aaa, drop column bbb, drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
...@@ -7,10 +7,6 @@ create table bar like foo; ...@@ -7,10 +7,6 @@ create table bar like foo;
alter table bar engine=MyISAM; alter table bar engine=MyISAM;
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo add column e int default NULL first; alter table foo add column e int default NULL first;
alter table bar add column e int default NULL first; alter table bar add column e int default NULL first;
select * from foo; select * from foo;
...@@ -22,38 +18,18 @@ NULL 99 99 0 99 ...@@ -22,38 +18,18 @@ NULL 99 99 0 99
NULL 1 110 1 0 NULL 1 110 1 0
NULL 0 3234 0 657 NULL 0 3234 0 657
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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e int default -1 first; alter table foo add column e int default -1 first;
alter table bar add column e int default -1 first; alter table bar add column e int default -1 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
alter table foo drop column e; alter table foo drop column e;
alter table bar drop column e; alter table bar drop column e;
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
alter table foo add column e int NOT NULL default -1 first; alter table foo add column e int NOT NULL default -1 first;
alter table bar add column e int NOT NULL default -1 first; alter table bar add column e int NOT NULL default -1 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;
e a b c d e a b c d
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
...@@ -72,31 +48,15 @@ alter table bar engine=MyISAM; ...@@ -72,31 +48,15 @@ alter table bar engine=MyISAM;
insert into foo values (NULL, -1, NULL, -1,1),(0,0,0,0,0),(NULL,234,234,324,234),(98567,76,NULL,7668,90909); insert into foo values (NULL, -1, NULL, -1,1),(0,0,0,0,0),(NULL,234,234,324,234),(98567,76,NULL,7668,90909);
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b; alter table foo drop column b;
alter table bar drop column b; alter table bar drop column b;
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
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
alter table foo drop column a; alter table foo drop column a;
alter table bar drop column a; alter table bar drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (a varchar(20), b varchar(20) not null, c varchar(20), d varchar(20) not null, e int, primary key (e))engine=TokuDB; create table foo (a varchar(20), b varchar(20) not null, c varchar(20), d varchar(20) not null, e int, primary key (e))engine=TokuDB;
...@@ -107,31 +67,15 @@ alter table bar engine=MyISAM; ...@@ -107,31 +67,15 @@ alter table bar engine=MyISAM;
insert into foo values (NULL, "-1", NULL, "-1",1),("dfg0","0rrr","eee0","qwert",0),(NULL,"234","234","324",234),("98567","76",NULL,"7668","90909"); insert into foo values (NULL, "-1", NULL, "-1",1),("dfg0","0rrr","eee0","qwert",0),(NULL,"234","234","324",234),("98567","76",NULL,"7668","90909");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column b; alter table foo drop column b;
alter table bar drop column b; alter table bar drop column b;
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
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
alter table foo drop column a; alter table foo drop column a;
alter table bar drop column a; alter table bar drop column a;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo( create table foo(
...@@ -156,10 +100,6 @@ insert into foo values (NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,N ...@@ -156,10 +100,6 @@ insert into foo values (NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,N
insert into foo values (-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1); insert into foo values (-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1);
insert into bar select * from foo; insert into bar select * from foo;
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 e f g h aa bb cc dd a b c d e f g h aa bb cc dd
NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1 NULL -1
...@@ -169,10 +109,6 @@ NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL ...@@ -169,10 +109,6 @@ NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL NULL
alter table foo drop column a, drop column aa, drop column c, drop column cc, drop column e, drop column f; alter table foo drop column a, drop column aa, drop column c, drop column cc, drop column e, drop column f;
alter table bar drop column a, drop column aa, drop column c, drop column cc, drop column e, drop column f; alter table bar drop column a, drop column aa, drop column c, drop column cc, drop column e, drop column f;
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;
b d g h bb dd b d g h bb dd
-1 -1 NULL -1 -1 -1 -1 -1 NULL -1 -1 -1
...@@ -182,10 +118,6 @@ NULL NULL NULL NULL NULL NULL ...@@ -182,10 +118,6 @@ NULL NULL NULL NULL NULL NULL
alter table foo add column a int default -1 first, add column aa int NOT NULL default -1 after h, add column c int default NULL after b, add column cc int default 0 after bb, add column f int default NULL after d, add column e int NOT NULL default 12345 after d; alter table foo add column a int default -1 first, add column aa int NOT NULL default -1 after h, add column c int default NULL after b, add column cc int default 0 after bb, add column f int default NULL after d, add column e int NOT NULL default 12345 after d;
alter table bar add column a int default -1 first, add column aa int NOT NULL default -1 after h, add column c int default NULL after b, add column cc int default 0 after bb, add column f int default NULL after d, add column e int NOT NULL default 12345 after d; alter table bar add column a int default -1 first, add column aa int NOT NULL default -1 after h, add column c int default NULL after b, add column cc int default 0 after bb, add column f int default NULL after d, add column e int NOT NULL default 12345 after 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 d e f g h aa bb cc dd a b c d e f g h aa bb cc dd
-1 -1 NULL -1 12345 NULL NULL -1 -1 -1 0 -1 -1 -1 NULL -1 12345 NULL NULL -1 -1 -1 0 -1
......
...@@ -9,10 +9,6 @@ insert into bar select * from foo; ...@@ -9,10 +9,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
...@@ -29,10 +25,6 @@ a b c d ...@@ -29,10 +25,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
...@@ -51,10 +43,6 @@ a b c ...@@ -51,10 +43,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
...@@ -75,10 +63,6 @@ d a b c ...@@ -75,10 +63,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
...@@ -108,10 +92,6 @@ insert into bar select * from foo; ...@@ -108,10 +92,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
...@@ -128,10 +108,6 @@ a b c d ...@@ -128,10 +108,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
...@@ -150,10 +126,6 @@ a b c ...@@ -150,10 +126,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
...@@ -174,10 +146,6 @@ d a b c ...@@ -174,10 +146,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
......
...@@ -9,10 +9,6 @@ insert into bar select * from foo; ...@@ -9,10 +9,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
...@@ -29,10 +25,6 @@ a b c d ...@@ -29,10 +25,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
...@@ -51,10 +43,6 @@ a b c ...@@ -51,10 +43,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
...@@ -75,10 +63,6 @@ d a b c ...@@ -75,10 +63,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
...@@ -108,10 +92,6 @@ insert into bar select * from foo; ...@@ -108,10 +92,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
...@@ -128,10 +108,6 @@ a b c d ...@@ -128,10 +108,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
...@@ -150,10 +126,6 @@ a b c ...@@ -150,10 +126,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
...@@ -174,10 +146,6 @@ d a b c ...@@ -174,10 +146,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
......
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.
...@@ -22,17 +22,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -22,17 +22,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa; alter table foo drop column aa;
alter table bar drop column aa; alter table bar drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -56,17 +48,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -56,17 +48,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb; alter table foo drop column bb;
alter table bar drop column bb; alter table bar drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -90,17 +74,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -90,17 +74,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc; alter table foo drop column cc;
alter table bar drop column cc; alter table bar drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -124,17 +100,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -124,17 +100,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd; alter table foo drop column dd;
alter table bar drop column dd; alter table bar drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -158,17 +126,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -158,17 +126,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa; alter table foo drop column aaa;
alter table bar drop column aaa; alter table bar drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -192,17 +152,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -192,17 +152,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb; alter table foo drop column bbb;
alter table bar drop column bbb; alter table bar drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -226,17 +178,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -226,17 +178,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc; alter table foo drop column ccc;
alter table bar drop column ccc; alter table bar drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -260,17 +204,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -260,17 +204,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd; alter table foo drop column ddd;
alter table bar drop column ddd; alter table bar drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -294,17 +230,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -294,17 +230,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb; alter table foo drop column aa, drop column bb;
alter table bar drop column aa, drop column bb; alter table bar drop column aa, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -328,17 +256,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -328,17 +256,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column cc; alter table foo drop column aa, drop column cc;
alter table bar drop column aa, drop column cc; alter table bar drop column aa, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -362,17 +282,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -362,17 +282,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column dd; alter table foo drop column aa, drop column dd;
alter table bar drop column aa, drop column dd; alter table bar drop column aa, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -396,17 +308,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -396,17 +308,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column aaa; alter table foo drop column aa, drop column aaa;
alter table bar drop column aa, drop column aaa; alter table bar drop column aa, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -430,17 +334,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -430,17 +334,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bbb; alter table foo drop column aa, drop column bbb;
alter table bar drop column aa, drop column bbb; alter table bar drop column aa, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -464,17 +360,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -464,17 +360,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column ccc; alter table foo drop column aa, drop column ccc;
alter table bar drop column aa, drop column ccc; alter table bar drop column aa, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -498,17 +386,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -498,17 +386,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column ddd; alter table foo drop column aa, drop column ddd;
alter table bar drop column aa, drop column ddd; alter table bar drop column aa, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -532,17 +412,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -532,17 +412,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column aa; alter table foo drop column bb, drop column aa;
alter table bar drop column bb, drop column aa; alter table bar drop column bb, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -566,17 +438,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -566,17 +438,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column cc; alter table foo drop column bb, drop column cc;
alter table bar drop column bb, drop column cc; alter table bar drop column bb, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -600,17 +464,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -600,17 +464,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column dd; alter table foo drop column bb, drop column dd;
alter table bar drop column bb, drop column dd; alter table bar drop column bb, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -634,17 +490,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -634,17 +490,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column aaa; alter table foo drop column bb, drop column aaa;
alter table bar drop column bb, drop column aaa; alter table bar drop column bb, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -668,17 +516,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -668,17 +516,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column bbb; alter table foo drop column bb, drop column bbb;
alter table bar drop column bb, drop column bbb; alter table bar drop column bb, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -702,17 +542,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -702,17 +542,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column ccc; alter table foo drop column bb, drop column ccc;
alter table bar drop column bb, drop column ccc; alter table bar drop column bb, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -736,17 +568,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -736,17 +568,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column ddd; alter table foo drop column bb, drop column ddd;
alter table bar drop column bb, drop column ddd; alter table bar drop column bb, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -770,17 +594,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -770,17 +594,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column aa; alter table foo drop column cc, drop column aa;
alter table bar drop column cc, drop column aa; alter table bar drop column cc, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -804,17 +620,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -804,17 +620,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column bb; alter table foo drop column cc, drop column bb;
alter table bar drop column cc, drop column bb; alter table bar drop column cc, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -838,17 +646,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -838,17 +646,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column dd; alter table foo drop column cc, drop column dd;
alter table bar drop column cc, drop column dd; alter table bar drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -872,17 +672,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -872,17 +672,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column aaa; alter table foo drop column cc, drop column aaa;
alter table bar drop column cc, drop column aaa; alter table bar drop column cc, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -906,17 +698,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -906,17 +698,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column bbb; alter table foo drop column cc, drop column bbb;
alter table bar drop column cc, drop column bbb; alter table bar drop column cc, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -940,17 +724,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -940,17 +724,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column ccc; alter table foo drop column cc, drop column ccc;
alter table bar drop column cc, drop column ccc; alter table bar drop column cc, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -974,17 +750,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -974,17 +750,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column cc, drop column ddd; alter table foo drop column cc, drop column ddd;
alter table bar drop column cc, drop column ddd; alter table bar drop column cc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1008,17 +776,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1008,17 +776,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column aa; alter table foo drop column dd, drop column aa;
alter table bar drop column dd, drop column aa; alter table bar drop column dd, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1042,17 +802,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1042,17 +802,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column bb; alter table foo drop column dd, drop column bb;
alter table bar drop column dd, drop column bb; alter table bar drop column dd, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1076,17 +828,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1076,17 +828,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column cc; alter table foo drop column dd, drop column cc;
alter table bar drop column dd, drop column cc; alter table bar drop column dd, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1110,17 +854,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1110,17 +854,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column aaa; alter table foo drop column dd, drop column aaa;
alter table bar drop column dd, drop column aaa; alter table bar drop column dd, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1144,17 +880,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1144,17 +880,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column bbb; alter table foo drop column dd, drop column bbb;
alter table bar drop column dd, drop column bbb; alter table bar drop column dd, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1178,17 +906,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1178,17 +906,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column ccc; alter table foo drop column dd, drop column ccc;
alter table bar drop column dd, drop column ccc; alter table bar drop column dd, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1212,17 +932,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1212,17 +932,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column dd, drop column ddd; alter table foo drop column dd, drop column ddd;
alter table bar drop column dd, drop column ddd; alter table bar drop column dd, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1246,17 +958,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1246,17 +958,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column aa; alter table foo drop column aaa, drop column aa;
alter table bar drop column aaa, drop column aa; alter table bar drop column aaa, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1280,17 +984,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1280,17 +984,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bb; alter table foo drop column aaa, drop column bb;
alter table bar drop column aaa, drop column bb; alter table bar drop column aaa, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1314,17 +1010,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1314,17 +1010,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column cc; alter table foo drop column aaa, drop column cc;
alter table bar drop column aaa, drop column cc; alter table bar drop column aaa, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1348,17 +1036,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1348,17 +1036,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column dd; alter table foo drop column aaa, drop column dd;
alter table bar drop column aaa, drop column dd; alter table bar drop column aaa, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1382,17 +1062,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1382,17 +1062,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb; alter table foo drop column aaa, drop column bbb;
alter table bar drop column aaa, drop column bbb; alter table bar drop column aaa, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1416,17 +1088,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1416,17 +1088,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ccc; alter table foo drop column aaa, drop column ccc;
alter table bar drop column aaa, drop column ccc; alter table bar drop column aaa, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1450,17 +1114,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1450,17 +1114,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column ddd; alter table foo drop column aaa, drop column ddd;
alter table bar drop column aaa, drop column ddd; alter table bar drop column aaa, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1484,17 +1140,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1484,17 +1140,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column aa; alter table foo drop column bbb, drop column aa;
alter table bar drop column bbb, drop column aa; alter table bar drop column bbb, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1518,17 +1166,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1518,17 +1166,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column bb; alter table foo drop column bbb, drop column bb;
alter table bar drop column bbb, drop column bb; alter table bar drop column bbb, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1552,17 +1192,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1552,17 +1192,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column cc; alter table foo drop column bbb, drop column cc;
alter table bar drop column bbb, drop column cc; alter table bar drop column bbb, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1586,17 +1218,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1586,17 +1218,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column dd; alter table foo drop column bbb, drop column dd;
alter table bar drop column bbb, drop column dd; alter table bar drop column bbb, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1620,17 +1244,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1620,17 +1244,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column aaa; alter table foo drop column bbb, drop column aaa;
alter table bar drop column bbb, drop column aaa; alter table bar drop column bbb, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1654,17 +1270,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1654,17 +1270,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ccc; alter table foo drop column bbb, drop column ccc;
alter table bar drop column bbb, drop column ccc; alter table bar drop column bbb, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1688,17 +1296,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1688,17 +1296,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bbb, drop column ddd; alter table foo drop column bbb, drop column ddd;
alter table bar drop column bbb, drop column ddd; alter table bar drop column bbb, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1722,17 +1322,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1722,17 +1322,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column aa; alter table foo drop column ccc, drop column aa;
alter table bar drop column ccc, drop column aa; alter table bar drop column ccc, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1756,17 +1348,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1756,17 +1348,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column bb; alter table foo drop column ccc, drop column bb;
alter table bar drop column ccc, drop column bb; alter table bar drop column ccc, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1790,17 +1374,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1790,17 +1374,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column cc; alter table foo drop column ccc, drop column cc;
alter table bar drop column ccc, drop column cc; alter table bar drop column ccc, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1824,17 +1400,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1824,17 +1400,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column dd; alter table foo drop column ccc, drop column dd;
alter table bar drop column ccc, drop column dd; alter table bar drop column ccc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1858,17 +1426,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1858,17 +1426,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column aaa; alter table foo drop column ccc, drop column aaa;
alter table bar drop column ccc, drop column aaa; alter table bar drop column ccc, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1892,17 +1452,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1892,17 +1452,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column bbb; alter table foo drop column ccc, drop column bbb;
alter table bar drop column ccc, drop column bbb; alter table bar drop column ccc, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1926,17 +1478,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1926,17 +1478,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ccc, drop column ddd; alter table foo drop column ccc, drop column ddd;
alter table bar drop column ccc, drop column ddd; alter table bar drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1960,17 +1504,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1960,17 +1504,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column aa; alter table foo drop column ddd, drop column aa;
alter table bar drop column ddd, drop column aa; alter table bar drop column ddd, drop column aa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -1994,17 +1530,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -1994,17 +1530,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column bb; alter table foo drop column ddd, drop column bb;
alter table bar drop column ddd, drop column bb; alter table bar drop column ddd, drop column bb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2028,17 +1556,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2028,17 +1556,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column cc; alter table foo drop column ddd, drop column cc;
alter table bar drop column ddd, drop column cc; alter table bar drop column ddd, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2062,17 +1582,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2062,17 +1582,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column dd; alter table foo drop column ddd, drop column dd;
alter table bar drop column ddd, drop column dd; alter table bar drop column ddd, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2096,17 +1608,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2096,17 +1608,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column aaa; alter table foo drop column ddd, drop column aaa;
alter table bar drop column ddd, drop column aaa; alter table bar drop column ddd, drop column aaa;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2130,17 +1634,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2130,17 +1634,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column bbb; alter table foo drop column ddd, drop column bbb;
alter table bar drop column ddd, drop column bbb; alter table bar drop column ddd, drop column bbb;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2164,17 +1660,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2164,17 +1660,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column ddd, drop column ccc; alter table foo drop column ddd, drop column ccc;
alter table bar drop column ddd, drop column ccc; alter table bar drop column ddd, drop column ccc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2198,17 +1686,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2198,17 +1686,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb, drop column cc; alter table foo drop column aa, drop column bb, drop column cc;
alter table bar drop column aa, drop column bb, drop column cc; alter table bar drop column aa, drop column bb, drop column cc;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2232,17 +1712,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2232,17 +1712,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb, drop column dd; alter table foo drop column aa, drop column bb, drop column dd;
alter table bar drop column aa, drop column bb, drop column dd; alter table bar drop column aa, drop column bb, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2266,17 +1738,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2266,17 +1738,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column cc, drop column dd; alter table foo drop column aa, drop column cc, drop column dd;
alter table bar drop column aa, drop column cc, drop column dd; alter table bar drop column aa, drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2300,17 +1764,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2300,17 +1764,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column bb, drop column cc, drop column dd; alter table foo drop column bb, drop column cc, drop column dd;
alter table bar drop column bb, drop column cc, drop column dd; alter table bar drop column bb, drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2334,17 +1790,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2334,17 +1790,9 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aa, drop column bb, drop column cc, drop column dd; alter table foo drop column aa, drop column bb, drop column cc, drop column dd;
alter table bar drop column aa, drop column bb, drop column cc, drop column dd; alter table bar drop column aa, drop column bb, drop column cc, drop column dd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB; create table foo (aa blob, bb longblob, cc tinyblob, dd mediumblob, aaa varchar(12), bbb varbinary(20), ccc varchar(50), ddd varchar(3000)) engine=TokuDB;
...@@ -2368,16 +1816,8 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf ...@@ -2368,16 +1816,8 @@ insert into foo values ("rewoiu","fds","fr","oiufdsrew",NULL,"oifds",NULL,"fdsjf
insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew"); insert into foo values ("rewoiu","fds","fr","oiufdsrew","rewoiu","fds","fr","oiufdsrew");
insert into bar select * from foo; insert into bar select * from foo;
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
alter table foo drop column aaa, drop column bbb, drop column ccc, drop column ddd; alter table foo drop column aaa, drop column bbb, drop column ccc, drop column ddd;
alter table bar drop column aaa, drop column bbb, drop column ccc, drop column ddd; alter table bar drop column aaa, drop column bbb, drop column ccc, drop column ddd;
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
drop table foo; drop table foo;
drop table bar; drop table bar;
...@@ -13,24 +13,12 @@ insert into foo_isam select * from foo; ...@@ -13,24 +13,12 @@ insert into foo_isam select * from foo;
alter table foo drop primary key; alter table foo drop primary key;
alter table foo_isam drop primary key; alter table foo_isam drop primary key;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo add primary key (e); alter table foo add primary key (e);
alter table foo_isam add primary key (e); alter table foo_isam add primary key (e);
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo drop primary key, add primary key(a); alter table foo drop primary key, add primary key(a);
alter table foo_isam drop primary key, add primary key (a); alter table foo_isam drop primary key, add primary key (a);
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo add fulltext key(b); alter table foo add fulltext key(b);
ERROR HY000: The storage engine TokuDB doesn't support FULLTEXT indexes ERROR HY000: The storage engine TokuDB doesn't support FULLTEXT indexes
alter table foo add spatial key (aa); alter table foo add spatial key (aa);
...@@ -38,52 +26,24 @@ ERROR HY000: The storage engine TokuDB doesn't support SPATIAL indexes ...@@ -38,52 +26,24 @@ ERROR HY000: The storage engine TokuDB doesn't support SPATIAL indexes
alter table foo alter column cc set default 101010; alter table foo alter column cc set default 101010;
alter table foo_isam alter column cc set default 101010; alter table foo_isam alter column cc set default 101010;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo alter column cc set default NULL; alter table foo alter column cc set default NULL;
alter table foo_isam alter column cc set default NULL; alter table foo_isam alter column cc set default NULL;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo alter column cc drop default; alter table foo alter column cc drop default;
alter table foo_isam alter column cc drop default; alter table foo_isam alter column cc drop default;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column aa aaa int; alter table foo change column aa aaa int;
alter table foo_isam change column aa aaa int; alter table foo_isam change column aa aaa int;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column aaa aa int; alter table foo change column aaa aa int;
alter table foo_isam change column aaa aa int; alter table foo_isam change column aaa aa int;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column e epk int; alter table foo change column e epk int;
alter table foo_isam change column e epk int; alter table foo_isam change column e epk int;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column epk e int; alter table foo change column epk e int;
alter table foo_isam change column epk e int; alter table foo_isam change column epk e int;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
show create table foo; show create table foo;
Table Create Table Table Create Table
foo CREATE TABLE `foo` ( foo CREATE TABLE `foo` (
...@@ -123,59 +83,27 @@ foo_isam CREATE TABLE `foo_isam` ( ...@@ -123,59 +83,27 @@ foo_isam CREATE TABLE `foo_isam` (
alter table foo change column aa aa int NOT NULL; alter table foo change column aa aa int NOT NULL;
alter table foo_isam change column aa aa int NOT NULL; alter table foo_isam change column aa aa int NOT NULL;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column aa aa bigint; alter table foo change column aa aa bigint;
alter table foo_isam change column aa aa bigint; alter table foo_isam change column aa aa bigint;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column aa aa varchar(20); alter table foo change column aa aa varchar(20);
alter table foo_isam change column aa aa varchar(20); alter table foo_isam change column aa aa varchar(20);
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo change column aa aa int after cc; alter table foo change column aa aa int after cc;
alter table foo_isam change column aa aa int after cc; alter table foo_isam change column aa aa int after cc;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo modify column aa int NOT NULL; alter table foo modify column aa int NOT NULL;
alter table foo_isam modify column aa int NOT NULL; alter table foo_isam modify column aa int NOT NULL;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo modify column aa bigint; alter table foo modify column aa bigint;
alter table foo_isam modify column aa bigint; alter table foo_isam modify column aa bigint;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo modify column aa varchar(20); alter table foo modify column aa varchar(20);
alter table foo_isam modify column aa varchar(20); alter table foo_isam modify column aa varchar(20);
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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
alter table foo modify column aa int after cc; alter table foo modify column aa int after cc;
alter table foo_isam modify column aa int after cc; alter table foo_isam modify column aa int after cc;
include/diff_tables.inc [test.foo, test.foo_isam] include/diff_tables.inc [test.foo, test.foo_isam]
Warnings:
Warning 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 foo; drop table foo;
drop table bar; drop table bar;
drop table foo_isam; drop table foo_isam;
......
...@@ -30,8 +30,4 @@ ALTER TABLE test REORGANIZE PARTITION p201312 INTO (PARTITION pOld VALUES LESS T ...@@ -30,8 +30,4 @@ ALTER TABLE test REORGANIZE PARTITION p201312 INTO (PARTITION pOld VALUES LESS T
create table test_copy like test; create table test_copy like test;
insert into test_copy select * from test; insert into test_copy select * from test;
include/diff_tables.inc [test, test_copy] include/diff_tables.inc [test, test_copy]
Warnings:
Warning 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 test,test_copy; drop table test,test_copy;
...@@ -10,8 +10,4 @@ insert into t1 values (1); ...@@ -10,8 +10,4 @@ insert into t1 values (1);
insert into t2 values (1); insert into t2 values (1);
commit; commit;
include/diff_tables.inc [test.t1, test.t2] include/diff_tables.inc [test.t1, 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,t2; drop table t1,t2;
...@@ -24,8 +24,4 @@ SELECT * FROM t1i WHERE 'bar' NOT IN ( SELECT t1_1.a FROM t1i AS t1_1, t1i AS t1 ...@@ -24,8 +24,4 @@ SELECT * FROM t1i WHERE 'bar' NOT IN ( SELECT t1_1.a FROM t1i AS t1_1, t1i AS t1
SELECT * FROM t2i; SELECT * FROM t2i;
a a
include/diff_tables.inc [t2,t2i] include/diff_tables.inc [t2,t2i]
Warnings:
Warning 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,t2,t1i,t2i; drop table t1,t2,t1i,t2i;
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