~vlad-lesin/percona-server/mysql-5.0.33-original

« back to all changes in this revision

Viewing changes to mysql-test/r/rpl_loaddata_rule_s.result

  • Committer: Vlad Lesin
  • Date: 2012-07-31 09:21:34 UTC
  • Revision ID: vladislav.lesin@percona.com-20120731092134-zfodx022b7992wsi
VirginĀ 5.0.33

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
reset master;
 
8
create table t1(a int, b int, unique(b));
 
9
load data infile '../std_data_ln/rpl_loaddata.dat' into table test.t1;
 
10
select count(*) from t1;
 
11
count(*)
 
12
2
 
13
show binlog events from 98;
 
14
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
 
15
drop table t1;