mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
623eedda26
added extra/mysql_install.c - will work on it in 4.0, but it does not hurt to have it sit in 3.23 tree for now since it will eventually be backported to 3.23 anyway Docs/manual.texi: documented slave-skip-errors updated change history extra/resolve_stack_dump.c: fixed wrong help message include/my_bitmap.h: bitmap code updates mysql-test/r/rpl_get_lock.result: test for a possible bug in release_lock() replication mysql-test/t/rpl_get_lock.test: test for possible bug in release_lock replication mysys/my_bitmap.c: bitmap code updates/clean-up sql/mysqld.cc: slave-skip-errors sql/slave.cc: slave-skip-errors sql/slave.h: slave skip errors
15 lines
351 B
Text
15 lines
351 B
Text
source include/master-slave.inc;
|
|
connection master;
|
|
drop table if exists t1;
|
|
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;
|