diff options
author | unknown <nick@mysql.com> | 2002-10-24 17:46:14 -0600 |
---|---|---|
committer | unknown <nick@mysql.com> | 2002-10-24 17:46:14 -0600 |
commit | 458ced9f340a16845ee3f4ae12765e9992d6afcc (patch) | |
tree | cddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/r/rpl000001.result | |
parent | 27d11e85b234de7ec48d57d5720c9871654adb2f (diff) | |
download | mariadb-git-458ced9f340a16845ee3f4ae12765e9992d6afcc.tar.gz |
altered syntax from SLAVE START|STOP to START|STOP SLAVE
mysql-test/mysql-test-run.sh:
Added --rpl option which tests all t/rpl*.test tests.
Diffstat (limited to 'mysql-test/r/rpl000001.result')
-rw-r--r-- | mysql-test/r/rpl000001.result | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/r/rpl000001.result b/mysql-test/r/rpl000001.result index 2dc21e86152..5cee2e6deff 100644 --- a/mysql-test/r/rpl000001.result +++ b/mysql-test/r/rpl000001.result @@ -1,9 +1,9 @@ -slave stop; +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; -slave start; +start slave; drop table if exists t1,t2,t3; create table t1 (word char(20) not null); load data infile '../../std_data/words.dat' into table t1; @@ -30,9 +30,9 @@ abandoned abandoning abandonment abandons -slave stop; +stop slave; set password for root@"localhost" = password('foo'); -slave start; +start slave; set password for root@"localhost" = password(''); create table t3(n int); insert into t3 values(1),(2); @@ -45,13 +45,13 @@ sum(length(word)) 141 drop table t1,t3; reset master; -slave stop; +stop slave; reset slave; create table t1(n int); select get_lock("hold_slave",10); get_lock("hold_slave",10) 1 -slave start; +start slave; select release_lock("hold_slave"); release_lock("hold_slave") 1 @@ -68,7 +68,7 @@ kill @id; drop table t2; Server shutdown in progress set global sql_slave_skip_counter=1; -slave start; +start slave; select count(*) from t1; count(*) 5000 |