~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl000017.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
stop slave;
 
8
grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
 
9
grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
 
10
start slave;
 
11
drop table if exists t1;
 
12
create table t1(n int);
 
13
insert into t1 values(24);
 
14
select * from t1;
 
15
n
 
16
24
 
17
drop table t1;
 
18
delete from mysql.user where user="replicate";