summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2000-12-14 17:48:54 -0700
committerunknown <sasha@mysql.sashanet.com>2000-12-14 17:48:54 -0700
commit230acc45197b7b7eda5dcf33dbad7ed879116e59 (patch)
tree3f086dd0852277b199931b8f30f05151b4826769 /mysql-test
parent7affa830608a7323aaf69d0c73d6107cf72db4b3 (diff)
parent93166332704c583cfd4d4898f8c99650dfd6193a (diff)
downloadmariadb-git-230acc45197b7b7eda5dcf33dbad7ed879116e59.tar.gz
I fixed the bug too and had to merge conflicts
myisammrg/myrg_open.c: merged
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/rpl000016.result3
-rw-r--r--mysql-test/t/rpl000016-slave-master-info.opt1
-rw-r--r--mysql-test/t/rpl000016.test19
3 files changed, 23 insertions, 0 deletions
diff --git a/mysql-test/r/rpl000016.result b/mysql-test/r/rpl000016.result
new file mode 100644
index 00000000000..d5716a82c24
--- /dev/null
+++ b/mysql-test/r/rpl000016.result
@@ -0,0 +1,3 @@
+s
+Could not break slave
+Tried hard
diff --git a/mysql-test/t/rpl000016-slave-master-info.opt b/mysql-test/t/rpl000016-slave-master-info.opt
new file mode 100644
index 00000000000..80190bf6d29
--- /dev/null
+++ b/mysql-test/t/rpl000016-slave-master-info.opt
@@ -0,0 +1 @@
+--server-id=2
diff --git a/mysql-test/t/rpl000016.test b/mysql-test/t/rpl000016.test
new file mode 100644
index 00000000000..6a89797af8a
--- /dev/null
+++ b/mysql-test/t/rpl000016.test
@@ -0,0 +1,19 @@
+connect (master,localhost,root,,test,0,var/tmp/mysql.sock);
+connect (slave,localhost,root,,test,0,var/tmp/mysql-slave.sock);
+system cat /dev/null > var/slave-data/master.info;
+system chmod 000 var/slave-data/master.info;
+connection slave;
+!slave start;
+system chmod 600 var/slave-data/master.info;
+!slave start;
+!change master to master_host='127.0.0.1',master_port=9306,master_user='root';
+reset slave;
+!change master to master_host='127.0.0.1',master_port=9306,master_user='root';
+slave start;
+connection master;
+drop table if exists foo;
+create table foo(s text);
+insert into foo values('Could not break slave'),('Tried hard');
+connection slave;
+sleep 0.3;
+select * from foo;