mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
b63538f1f5
libmysqld/lib_sql.cc: Fix for new bitmap mysql-test/r/rpl_get_lock.result: Fix results after merge mysql-test/r/rpl_skip_error.result: Fix results after merge sql/log_event.cc: Finish merge of slave.cc sql/slave.cc: Finish merge
15 lines
283 B
Text
15 lines
283 B
Text
slave stop;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
slave start;
|
|
drop table if exists t1;
|
|
create table t1 (n int not null primary key);
|
|
insert into t1 values (1);
|
|
insert into t1 values (1);
|
|
insert into t1 values (2),(3);
|
|
select * from t1;
|
|
n
|
|
1
|
|
2
|
|
3
|