mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
9e7f2c9f2d
replication updates sql/opt_range.h fixed compiler warning sql/slave.cc fixed handling of long usernames fixed insert_id + query log event processing atomicity in the case of slave death fix edcharset coversion to not be global to all threads sql/sql_class.h fix to make insert_id event and the subsequent query event be still processed atomically if slave dies in the middle sql/sql_select.cc temp fix to make it compile repl-tests/test-auto-inc/run.test@1.1 New BitKeeper file ``repl-tests/test-auto-inc/run.test'' repl-tests/test-auto-inc/x.master@1.1 New BitKeeper file ``repl-tests/test-auto-inc/x.master'' Docs/manual.texi: replication updates sql/opt_range.h: fixed compiler warning sql/slave.cc: fixed handling of long usernames fixed insert_id + query log event processing atomicity in the case of slave death fix edcharset coversion to not be global to all threads sql/sql_class.h: fix to make insert_id event and the subsequent query event be still processed atomically if slave dies in the middle sql/sql_select.cc: temp fix to make it compile
10 lines
250 B
Text
Executable file
10 lines
250 B
Text
Executable file
source ../include/master-slave.inc;
|
|
connection master;
|
|
drop table if exists x;
|
|
create table x(n int auto_increment primary key);
|
|
set insert_id = 2000;
|
|
insert into x values (NULL),(NULL),(NULL);
|
|
connection slave;
|
|
sleep 3;
|
|
@x.master select * from x;
|
|
|