mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
16 lines
630 B
Text
16 lines
630 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
CREATE TABLE t1 (pk integer auto_increment , primary key (pk));
|
|
SET SESSION SQL_MODE='traditional';
|
|
# **** [MASTER] *****
|
|
# action: raise DUP KEY error (error code should be set in the
|
|
# query log event)
|
|
INSERT INTO t1 (`pk`) VALUES (1), (1);
|
|
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
|
|
DROP TABLE t1;
|
|
# **** [ sync slave with master ] ****
|
|
# assertion: sync slave with master makes slave not to stop with
|
|
# duplicate key error (because it has received event
|
|
# with expected error code).
|
|
connection slave;
|
|
include/rpl_end.inc
|