diff options
Diffstat (limited to 'mysql-test/r/rpl000017.result')
-rw-r--r-- | mysql-test/r/rpl000017.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/rpl000017.result b/mysql-test/r/rpl000017.result index e4f324047f8..211f7d629fb 100644 --- a/mysql-test/r/rpl000017.result +++ b/mysql-test/r/rpl000017.result @@ -1,2 +1,10 @@ +reset master; +grant file on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab'; +slave start; +drop table if exists t1; +create table t1(n int); +insert into t1 values(24); +select * from t1; n 24 +drop table t1; |