~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_loaddata_s.test

  • 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
# 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_mixed_or_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
source include/show_binlog_events.inc;
 
24
 
 
25
# Cleanup
 
26
connection master;
 
27
drop table test.t1;
 
28
sync_slave_with_master;