~vkolesnikov/pbxt/pbxt-07-diskfull

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/t/rpl_loaddata_s.test

  • Committer: paul-mccullagh
  • Date: 2006-10-23 09:14:04 UTC
  • Revision ID: paul-mccullagh-918861e03d351978a9541168a96e58cc826734ee
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# See if the slave logs (in its own binlog, with --log-slave-updates) a
 
2
# replicated LOAD DATA INFILE correctly when it has binlog_*_db rules.
 
3
# This is for BUG#1100 (LOAD DATA INFILE was half-logged).
 
4
 
 
5
-- source include/have_binlog_format_statement.inc
 
6
-- source include/master-slave.inc
 
7
 
 
8
connection slave;
 
9
# Not sure why we connect to slave and then try to reset master, but I will leave it [JBM]
 
10
reset master;
 
11
 
 
12
connection master;
 
13
# 'test' is the current database
 
14
create table test.t1(a int, b int, unique(b));
 
15
load data infile '../std_data_ln/rpl_loaddata.dat' into table test.t1;
 
16
 
 
17
# Test logging on slave;
 
18
 
 
19
save_master_pos;
 
20
connection slave;
 
21
sync_with_master;
 
22
select count(*) from test.t1; # check that LOAD was replicated
 
23
--replace_column 2 # 5 #
 
24
--replace_regex /table_id: [0-9]+/table_id: #/
 
25
show binlog events from 102; # should be nothing
 
26
 
 
27
# Cleanup
 
28
connection master;
 
29
drop table test.t1;
 
30
sync_slave_with_master;