~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/binlog/t/binlog_auto_increment_bug33029.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# BUG#33029 5.0 to 5.1 replication fails on dup key when inserting
 
2
# using a trig in SP
 
3
 
 
4
# For all 5.0 up to 5.0.58 exclusive, and 5.1 up to 5.1.12 exclusive,
 
5
# if one statement in a SP generated AUTO_INCREMENT value by the top
 
6
# statement, all statements after it would be considered generated
 
7
# AUTO_INCREMENT value by the top statement, and a erroneous INSERT_ID
 
8
# value might be associated with these statement, which could cause
 
9
# duplicate entry error and stop the slave.
 
10
 
 
11
# Test if the slave can replicate from such a buggy master
 
12
 
 
13
# The bug33029-slave-relay-bin.000001 file is the
 
14
# slave-replay-bin.000003 file generated by run the
 
15
# rpl_auto_increment_bug33029.test with clean up statements at the end
 
16
# of the test case removed on a buggy 5.0 server
 
17
 
 
18
source include/have_log_bin.inc;
 
19
 
 
20
# Need to restore this at the end; CHANGE MASTER modifies it (see the
 
21
# manual for CHANGE MASTER).
 
22
SET @old_relay_log_purge= @@global.relay_log_purge;
 
23
 
 
24
let $MYSQLD_DATADIR= `select @@datadir`;
 
25
 
 
26
copy_file $MYSQL_TEST_DIR/std_data/bug33029-slave-relay-bin.000001 $MYSQLD_DATADIR/slave-relay-bin.000001;
 
27
 
 
28
write_file $MYSQLD_DATADIR/slave-relay-bin.index;
 
29
slave-relay-bin.000001
 
30
EOF
 
31
 
 
32
change master to
 
33
  MASTER_HOST='dummy.localdomain',
 
34
  RELAY_LOG_FILE='slave-relay-bin.000001',
 
35
  RELAY_LOG_POS=4;
 
36
 
 
37
start slave sql_thread;
 
38
disable_result_log;
 
39
select MASTER_POS_WAIT('master-bin.000001', 3776);
 
40
enable_result_log;
 
41
 
 
42
echo # Result on slave;
 
43
SELECT * FROM t1;
 
44
SELECT * FROM t2;
 
45
 
 
46
# clean up
 
47
disable_warnings;
 
48
DROP TABLE IF EXISTS t1, t2;
 
49
DROP PROCEDURE IF EXISTS p1;
 
50
DROP PROCEDURE IF EXISTS p2;
 
51
DROP FUNCTION IF EXISTS f1;
 
52
DROP TRIGGER IF EXISTS tr1;
 
53
enable_warnings;
 
54
 
 
55
stop slave sql_thread;
 
56
reset slave;
 
57
source include/wait_for_slave_sql_to_stop.inc;
 
58
remove_file $MYSQLD_DATADIR/slave-relay-bin.000001;
 
59
remove_file $MYSQLD_DATADIR/slave-relay-bin.index;
 
60
 
 
61
SET @@global.relay_log_purge= @old_relay_log_purge;