mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
fixed slave to preserve temp tables on slave stop; slave start added abort-slave-event-count option to mysqld to test the above added a test case for temp tables with a contantly aborting slave removed warning in sql_parse.cc fixed thimble.cc to compile
9 lines
282 B
Text
9 lines
282 B
Text
source t/include/master-slave.inc;
|
|
connection master;
|
|
drop table if exists x;
|
|
create table x(n int primary key);
|
|
!insert into x values (1),(2),(2);
|
|
insert into x values (3);
|
|
connection slave;
|
|
sleep 0.5;
|
|
@r/3.23/rpl000003.result select * from x;
|