mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
cb606a661a
mysql-test/r/rpl_skip_error.result: test result fixed mysql-test/t/rpl_skip_error.test: inconsistent column results hidden
40 lines
916 B
Text
40 lines
916 B
Text
source include/master-slave.inc;
|
|
|
|
create table t1 (n int not null primary key);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
insert into t1 values (1);
|
|
connection master;
|
|
insert into t1 values (1);
|
|
insert into t1 values (2),(3);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
|
|
connection master;
|
|
drop table t1;
|
|
sync_with_master;
|
|
# End of 4.1 tests
|
|
|
|
#
|
|
# #28839 Errors in strict mode silently stop SQL thread if --slave-skip-errors exists
|
|
#
|
|
create table t1(a int primary key);
|
|
insert into t1 values (1),(2);
|
|
delete from t1 where @@server_id=1;
|
|
set sql_mode=strict_trans_tables;
|
|
select @@server_id;
|
|
insert into t1 values (1),(2),(3);
|
|
sync_slave_with_master;
|
|
connection slave;
|
|
select @@server_id;
|
|
select * from t1;
|
|
--replace_column 1 # 8 # 9 # 23 # 33 #
|
|
--replace_result $MASTER_MYPORT MASTER_PORT
|
|
show slave status;
|
|
connection master;
|
|
drop table t1;
|
|
sync_with_master;
|
|
# End of 5.0 tests
|