mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
08fc358542
fixed skip counter to do the RightThing (TM) when the user messes up. Still do RightThing when he gets it right. mysql-test/r/rpl000016.result: updated test result mysql-test/t/rpl000013.test: test alias bug mysql-test/t/rpl000016.test: test for proper skip when the user messes up sql/slave.cc: proper skip even when the user goofs up sql/sql_base.cc: drop real name, not last used alias in the log
38 lines
870 B
Text
38 lines
870 B
Text
source include/master-slave.inc;
|
|
connection master;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
connection master;
|
|
drop table if exists t2;
|
|
create table t2(n int);
|
|
create temporary table t1 (n int);
|
|
insert into t1 values(1),(2),(3);
|
|
insert into t2 select * from t1;
|
|
connection master1;
|
|
create temporary table t1 (n int);
|
|
insert into t1 values (4),(5);
|
|
insert into t2 select * from t1 as t10;
|
|
save_master_pos;
|
|
disconnect master;
|
|
connection slave;
|
|
#add 1 to catch drop table
|
|
sync_with_master 1;
|
|
connection master1;
|
|
insert into t2 values(6);
|
|
save_master_pos;
|
|
disconnect master1;
|
|
connection slave;
|
|
# same trick to go one more event
|
|
sync_with_master 1;
|
|
select * from t2;
|
|
show status like 'Slave_open_temp_tables';
|
|
#
|
|
# Clean up
|
|
#
|
|
connect (master2,localhost,root,,);
|
|
connection master2;
|
|
drop table if exists t1,t2;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|