diff options
author | sasha@mysql.sashanet.com <> | 2000-12-07 07:54:59 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-12-07 07:54:59 -0700 |
commit | ec1359416be7cec52f94dc4f7d6fabb2d406d416 (patch) | |
tree | ef39d8dcdf72e86ba28a8083870495ea8e17395c /mysql-test/include | |
parent | a5c75df390e9b67454bd0a04e75583057e9579f7 (diff) | |
download | mariadb-git-ec1359416be7cec52f94dc4f7d6fabb2d406d416.tar.gz |
fixed up mysql-test - will not push this yet, as more clean up/testing is to follow
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/master-slave.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/include/master-slave.inc b/mysql-test/include/master-slave.inc new file mode 100644 index 00000000000..137749912a7 --- /dev/null +++ b/mysql-test/include/master-slave.inc @@ -0,0 +1,11 @@ +connect (master,localhost,root,,test,0,var/tmp/mysql.sock); +connect (master1,localhost,root,,test,0,var/tmp/mysql.sock); +connect (slave,localhost,root,,test,0,var/tmp/mysql-slave.sock); +connect (slave1,localhost,root,,test,0,var/tmp/mysql-slave.sock); +connection slave; +!slave stop; +connection master; +reset master; +connection slave; +reset slave; +!slave start; |