~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-- source include/have_binlog_format_row.inc
2
2
-- source include/master-slave.inc
 
3
-- let $engine= MyISAM
3
4
 
4
5
#
5
6
# BUG#52868 Wrong handling of NULL value during update, replication out of sync
6
7
#
7
8
 
8
9
 
9
10
-- echo ## coverage purposes - Field_bits 
10
11
-- echo ##                     1 X bit + 2 Null bits + 5 bits => last_null_bit_pos==0
11
12
## Added here because AFAIK it's only MyISAM and NDB that use Field_bits
12
13
 
 
14
--source include/rpl_reset.inc
13
15
-- connection master
14
16
 
15
17
-- eval CREATE TABLE t1 (c1 bigint(20) DEFAULT 0, c2 bit(5)) ENGINE=$engine DEFAULT CHARSET=latin1
22
21
UPDATE t1 SET c1= 0;
23
22
-- sync_slave_with_master
24
23
 
 
24
-- let $diff_tables= master:t1, slave:t1
25
25
-- source include/diff_tables.inc
26
26
 
27
27
-- connection master
28
28
DROP TABLE t1; 
29
29
-- sync_slave_with_master
 
30
 
 
31
-- source extra/rpl_tests/rpl_record_compare.test
 
32
 
 
33
--source include/rpl_end.inc