diff options
author | unknown <gkodinov/kgeorge@magare.gmz> | 2007-07-26 11:32:27 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@magare.gmz> | 2007-07-26 11:32:27 +0300 |
commit | 935ce76278477061d07b8e9b441762e90e781e34 (patch) | |
tree | cbe7bb1edae72d91bd4bdd39c3451c18bc8bca16 /mysql-test/r | |
parent | 2df3b7b0ea0681c6fafeda7d6c017404691d5cb9 (diff) | |
parent | 5babac539d03b4bb9aff2f74965b98c8506726e5 (diff) | |
download | mariadb-git-935ce76278477061d07b8e9b441762e90e781e34.tar.gz |
Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into magare.gmz:/home/kgeorge/mysql/autopush/B29571-5.0-opt
sql/sql_insert.cc:
Auto merged
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/rpl_insert_delayed.result | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/r/rpl_insert_delayed.result b/mysql-test/r/rpl_insert_delayed.result index 38e2cddd650..ddf6e9c2165 100644 --- a/mysql-test/r/rpl_insert_delayed.result +++ b/mysql-test/r/rpl_insert_delayed.result @@ -29,3 +29,23 @@ id name 10 my name 20 is Bond drop table t1; +CREATE TABLE t1(a int, UNIQUE(a)); +INSERT DELAYED IGNORE INTO t1 VALUES(1); +INSERT DELAYED IGNORE INTO t1 VALUES(1); +show binlog events limit 11,100; +Log_name Pos Event_type Server_id End_log_pos Info +x x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1) +x x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1) +select * from t1; +a +1 +On slave +show binlog events limit 12,100; +Log_name Pos Event_type Server_id End_log_pos Info +x x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1) +x x x x x use `test`; INSERT DELAYED IGNORE INTO t1 VALUES(1) +select * from t1; +a +1 +drop table t1; +End of 5.0 tests |