mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 03:47:17 +02:00
Last changes after merge with 3.23.47
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
This commit is contained in:
parent
63e4dec244
commit
b63538f1f5
5 changed files with 30 additions and 8 deletions
|
|
@ -1,3 +1,14 @@
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue