2006-06-22 22:44:21 +03:00
|
|
|
stop slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
|
|
start slave;
|
|
|
|
**** On Master ****
|
|
|
|
CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB;
|
|
|
|
INSERT INTO t1 VALUES (1,1), (2,2);
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
1 1
|
|
|
|
2 2
|
|
|
|
**** On Slave ****
|
|
|
|
INSERT INTO t1 VALUE (3,3);
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
1 1
|
|
|
|
2 2
|
|
|
|
3 3
|
|
|
|
**** On Master ****
|
|
|
|
TRUNCATE TABLE t1;
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
**** On Slave ****
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
**** On Master ****
|
|
|
|
DROP TABLE t1;
|
|
|
|
SHOW BINLOG EVENTS;
|
|
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
Bug#19259 rpl_ndb_dd_partitions failed on Solaris
Actually, this testcase will fail generally on all testing platforms.
The bugs come from the inconsistent bitmap between rpl master and slave.
In log_event.cc, the n_bits of m_cols and m_cols_ai are intialized with octal-ceiling
m_width, in fact, their n_bits should be equal to m_width.
Wrong n_bits will cause bitmap_bits_set() get incorrect value in unpack_row()
in rpl_record.cc,
then an assertion in unpack_row() will fail and crash sql thread.
DBUG_ASSERT(null_ptr == row_data + master_null_byte_count);
Meanwhile, because of binlog_prepare_pending_rows_event() changed with correct
m_cols, some results of specific testcases should be updated:
binlog_multi_engine.test
ndb_binlog_multi.test
rpl_ndb_dd_partitions.test
rpl_ndb_log.test
rpl_truncate_7ndb.test
rpl_truncate_7ndb_2.test
In addition, to ensure rows replication correct between master and slave after the patch,
two 'select * from t1' are added in extra/rpl_tests/rpl_log.test, and some testcases include
rpl_log.test, therefore, the results of these testcases should be updated likewise:
rpl_stm_log.test
rpl_row_log.test
rpl_ndb_log.test
rpl_row_log_innodb.test
Totally, results of nine testcases are updated.
2007-07-12 15:19:29 +08:00
|
|
|
master-bin.000001 4 Format_desc 1 106 Server ver: SERVER_VERSION, Binlog ver: 4
|
|
|
|
master-bin.000001 106 Query 1 223 use `test`; CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB
|
|
|
|
master-bin.000001 223 Query 1 287 BEGIN
|
|
|
|
master-bin.000001 287 Table_map 1 40 table_id: # (test.t1)
|
|
|
|
master-bin.000001 327 Table_map 1 98 table_id: # (mysql.ndb_apply_status)
|
|
|
|
master-bin.000001 385 Write_rows 1 157 table_id: #
|
|
|
|
master-bin.000001 444 Write_rows 1 204 table_id: # flags: STMT_END_F
|
|
|
|
master-bin.000001 491 Query 1 556 COMMIT
|
|
|
|
master-bin.000001 556 Query 1 636 use `test`; TRUNCATE TABLE t1
|
|
|
|
master-bin.000001 636 Query 1 712 use `test`; DROP TABLE t1
|
2006-06-22 22:44:21 +03:00
|
|
|
**** On Master ****
|
|
|
|
CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB;
|
|
|
|
INSERT INTO t1 VALUES (1,1), (2,2);
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
1 1
|
|
|
|
2 2
|
|
|
|
**** On Slave ****
|
|
|
|
INSERT INTO t1 VALUE (3,3);
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
1 1
|
|
|
|
2 2
|
|
|
|
3 3
|
|
|
|
**** On Master ****
|
|
|
|
DELETE FROM t1;
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
**** On Slave ****
|
|
|
|
SELECT * FROM t1 ORDER BY a,b;
|
|
|
|
a b
|
|
|
|
3 3
|
|
|
|
**** On Master ****
|
|
|
|
DROP TABLE t1;
|
|
|
|
SHOW BINLOG EVENTS;
|
|
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
Bug#19259 rpl_ndb_dd_partitions failed on Solaris
Actually, this testcase will fail generally on all testing platforms.
The bugs come from the inconsistent bitmap between rpl master and slave.
In log_event.cc, the n_bits of m_cols and m_cols_ai are intialized with octal-ceiling
m_width, in fact, their n_bits should be equal to m_width.
Wrong n_bits will cause bitmap_bits_set() get incorrect value in unpack_row()
in rpl_record.cc,
then an assertion in unpack_row() will fail and crash sql thread.
DBUG_ASSERT(null_ptr == row_data + master_null_byte_count);
Meanwhile, because of binlog_prepare_pending_rows_event() changed with correct
m_cols, some results of specific testcases should be updated:
binlog_multi_engine.test
ndb_binlog_multi.test
rpl_ndb_dd_partitions.test
rpl_ndb_log.test
rpl_truncate_7ndb.test
rpl_truncate_7ndb_2.test
In addition, to ensure rows replication correct between master and slave after the patch,
two 'select * from t1' are added in extra/rpl_tests/rpl_log.test, and some testcases include
rpl_log.test, therefore, the results of these testcases should be updated likewise:
rpl_stm_log.test
rpl_row_log.test
rpl_ndb_log.test
rpl_row_log_innodb.test
Totally, results of nine testcases are updated.
2007-07-12 15:19:29 +08:00
|
|
|
master-bin.000001 4 Format_desc 1 106 Server ver: SERVER_VERSION, Binlog ver: 4
|
|
|
|
master-bin.000001 106 Query 1 223 use `test`; CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB
|
|
|
|
master-bin.000001 223 Query 1 287 BEGIN
|
|
|
|
master-bin.000001 287 Table_map 1 40 table_id: # (test.t1)
|
|
|
|
master-bin.000001 327 Table_map 1 98 table_id: # (mysql.ndb_apply_status)
|
|
|
|
master-bin.000001 385 Write_rows 1 157 table_id: #
|
|
|
|
master-bin.000001 444 Write_rows 1 204 table_id: # flags: STMT_END_F
|
|
|
|
master-bin.000001 491 Query 1 556 COMMIT
|
|
|
|
master-bin.000001 556 Query 1 636 use `test`; TRUNCATE TABLE t1
|
|
|
|
master-bin.000001 636 Query 1 712 use `test`; DROP TABLE t1
|
|
|
|
master-bin.000001 712 Query 1 829 use `test`; CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB
|
|
|
|
master-bin.000001 829 Query 1 893 BEGIN
|
|
|
|
master-bin.000001 893 Table_map 1 40 table_id: # (test.t1)
|
|
|
|
master-bin.000001 933 Table_map 1 98 table_id: # (mysql.ndb_apply_status)
|
|
|
|
master-bin.000001 991 Write_rows 1 157 table_id: #
|
|
|
|
master-bin.000001 1050 Write_rows 1 204 table_id: # flags: STMT_END_F
|
|
|
|
master-bin.000001 1097 Query 1 1162 COMMIT
|
|
|
|
master-bin.000001 1162 Query 1 1226 BEGIN
|
|
|
|
master-bin.000001 1226 Table_map 1 40 table_id: # (test.t1)
|
|
|
|
master-bin.000001 1266 Table_map 1 98 table_id: # (mysql.ndb_apply_status)
|
|
|
|
master-bin.000001 1324 Write_rows 1 157 table_id: #
|
|
|
|
master-bin.000001 1383 Delete_rows 1 196 table_id: # flags: STMT_END_F
|
|
|
|
master-bin.000001 1422 Query 1 1487 COMMIT
|
|
|
|
master-bin.000001 1487 Query 1 1563 use `test`; DROP TABLE t1
|