diff options
author | nick@mysql.com <> | 2002-10-24 17:46:14 -0600 |
---|---|---|
committer | nick@mysql.com <> | 2002-10-24 17:46:14 -0600 |
commit | 62f36f0221da263496b67e7665656103e71a695e (patch) | |
tree | cddfba9393a1edb985b2e059371f89d6a2abaabe /mysql-test/r/rpl000006.result | |
parent | 6c22ca4454c79db681b376e4f449d9a60ff353bc (diff) | |
download | mariadb-git-62f36f0221da263496b67e7665656103e71a695e.tar.gz |
altered syntax from SLAVE START|STOP to START|STOP SLAVE
Diffstat (limited to 'mysql-test/r/rpl000006.result')
-rw-r--r-- | mysql-test/r/rpl000006.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/rpl000006.result b/mysql-test/r/rpl000006.result index e7fc5151ac4..e256e0f0136 100644 --- a/mysql-test/r/rpl000006.result +++ b/mysql-test/r/rpl000006.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; set SQL_LOG_BIN=0,timestamp=200006; drop table if exists t1; create table t1(t timestamp not null,a char(1)); |