diff options
author | unknown <sasha@asksasha.com> | 2005-08-02 15:13:56 -0600 |
---|---|---|
committer | unknown <sasha@asksasha.com> | 2005-08-02 15:13:56 -0600 |
commit | d953bc7a648b57dd138fb558a3de4e3858415275 (patch) | |
tree | 0df6ca36fc012a7f87cb03b6949d94e8fb9ac48a | |
parent | 275150580bdc867dbcc0c58d23d152f94b2bb4f7 (diff) | |
download | mariadb-git-d953bc7a648b57dd138fb558a3de4e3858415275.tar.gz |
Added a test case for BUG#10456
mysql-test/r/rpl_insert_select.result:
New BitKeeper file ``mysql-test/r/rpl_insert_select.result''
-rw-r--r-- | mysql-test/r/rpl_insert_select.result | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/r/rpl_insert_select.result b/mysql-test/r/rpl_insert_select.result new file mode 100644 index 00000000000..1aff39e0026 --- /dev/null +++ b/mysql-test/r/rpl_insert_select.result @@ -0,0 +1,17 @@ +stop slave; +drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; +reset master; +reset slave; +drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; +start slave; +create table t1 (n int not null primary key); +insert into t1 values (1); +create table t2 (n int); +insert into t2 values (1); +insert ignore into t1 select * from t2; +insert into t1 values (2); +select * from t1; +n +1 +2 +drop table t1,t2; |