summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <timour@mysql.com>2004-11-25 13:25:35 +0200
committerunknown <timour@mysql.com>2004-11-25 13:25:35 +0200
commitfecd27a1063ef32c7d1d3149321323de2c943364 (patch)
treeb06a0495934dc459a552dadc38cb32f6c43114da /mysql-test/r
parent0dcb55f470a6540a005d9d812d0b7a3b1378bd2c (diff)
parent467c481479ac511cc445b9703260e9b3bb8b2e96 (diff)
downloadmariadb-git-fecd27a1063ef32c7d1d3149321323de2c943364.tar.gz
Merge mysql.com:/home/timka/mysql/src/4.0-virgin
into mysql.com:/home/timka/mysql/src/4.0-master BitKeeper/etc/logging_ok: auto-union
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/rpl_start_stop_slave.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/rpl_start_stop_slave.result b/mysql-test/r/rpl_start_stop_slave.result
new file mode 100644
index 00000000000..1b4d87124d1
--- /dev/null
+++ b/mysql-test/r/rpl_start_stop_slave.result
@@ -0,0 +1,12 @@
+slave stop;
+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;
+slave start;
+stop slave;
+create table t1(n int);
+start slave;
+stop slave io_thread;
+start slave io_thread;
+drop table t1;