summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000012.test
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-04-10 20:56:54 -0600
committersasha@mysql.sashanet.com <>2001-04-10 20:56:54 -0600
commit102c1945eb20afcfc727ab9cec981f4b5204ed8c (patch)
treec052d8d91d91bacc775ebdfd8e299c23e4a6e100 /mysql-test/t/rpl000012.test
parent54b9d367f9fd32e1c57b0abd53c6299fdafad81f (diff)
downloadmariadb-git-102c1945eb20afcfc727ab9cec981f4b5204ed8c.tar.gz
do not log the drop internal temporary tables into the binary log
mark killed partially completed updates with an error code in binlog stop replication if the master reports a possible partial/killed update test partially killed update
Diffstat (limited to 'mysql-test/t/rpl000012.test')
-rw-r--r--mysql-test/t/rpl000012.test9
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/t/rpl000012.test b/mysql-test/t/rpl000012.test
index ec93234094e..01ff9ec8a37 100644
--- a/mysql-test/t/rpl000012.test
+++ b/mysql-test/t/rpl000012.test
@@ -1,11 +1,18 @@
source include/master-slave.inc;
connection master;
-drop table if exists t1,t2;
+drop table if exists t1,t2,t3;
create table t2 (n int);
create temporary table t1 (n int);
insert into t1 values(1),(2),(3);
insert into t2 select * from t1;
+drop table if exists test.t3;
+create temporary table test.t3 (n int not null);
+alter table test.t3 add primary key(n);
+insert into t3 values (100);
+insert into t2 select * from t3;
+drop table if exists test.t3;
+insert into t2 values (101);
connection master1;
create temporary table t1 (n int);
insert into t1 values (4),(5);