Commit 91251238 authored by unknown's avatar unknown

Bug#8412: merged from 4.1


sql/log.cc:
  Merge from 4.1
parents 47ed1db7 7f138454
...@@ -68,3 +68,8 @@ b c ...@@ -68,3 +68,8 @@ b c
9 13 9 13
drop table t1; drop table t1;
drop table t2; drop table t2;
SET TIMESTAMP=1000000000;
CREATE TABLE t1 ( a INT UNIQUE );
SET FOREIGN_KEY_CHECKS=0;
INSERT INTO t1 VALUES (1),(1);
Duplicate entry '1' for key 1
...@@ -61,3 +61,19 @@ drop table t2; ...@@ -61,3 +61,19 @@ drop table t2;
save_master_pos; save_master_pos;
connection slave; connection slave;
sync_with_master; sync_with_master;
#
# Bug#8412: Error codes reported in binary log for CHARACTER SET,
# FOREIGN_KEY_CHECKS
#
connection master;
SET TIMESTAMP=1000000000;
CREATE TABLE t1 ( a INT UNIQUE );
SET FOREIGN_KEY_CHECKS=0;
--error 1062
INSERT INTO t1 VALUES (1),(1);
sync_slave_with_master;
...@@ -1737,7 +1737,9 @@ COLLATION_CONNECTION=%u,COLLATION_DATABASE=%u,COLLATION_SERVER=%u", ...@@ -1737,7 +1737,9 @@ COLLATION_CONNECTION=%u,COLLATION_DATABASE=%u,COLLATION_SERVER=%u",
} }
} }
/* Write the SQL command */ /*
Write the SQL command
*/
if (event_info->write(file)) if (event_info->write(file))
goto err; goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment