mirror of
https://github.com/MariaDB/server.git
synced 2026-04-23 08:45:33 +02:00
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
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
This commit is contained in:
parent
4af074054b
commit
9e7f2c9f2d
7 changed files with 124 additions and 21 deletions
10
repl-tests/test-auto-inc/run.test
Executable file
10
repl-tests/test-auto-inc/run.test
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
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;
|
||||
|
||||
4
repl-tests/test-auto-inc/x.master
Normal file
4
repl-tests/test-auto-inc/x.master
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
n
|
||||
2000
|
||||
2001
|
||||
2002
|
||||
Loading…
Add table
Add a link
Reference in a new issue