mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / rpl / r / rpl_bug26395.result
bloba3725f34a55ad909f772c70d6c3d292cad367c35
1 include/master-slave.inc
2 [connection master]
3 ==== Initialize ====
4 [on master]
5 CREATE TABLE tinnodb (a INT) ENGINE = INNODB;
6 SHOW CREATE TABLE tinnodb;
7 Table   Create Table
8 tinnodb CREATE TABLE `tinnodb` (
9   `a` int(11) DEFAULT NULL
10 ) ENGINE=InnoDB DEFAULT CHARSET=latin1
11 set @old_debug= @@debug;
12 set @@debug= 'd,do_not_write_xid';
13 ==== Test ====
14 INSERT INTO tinnodb VALUES (1);
15 SELECT * FROM tinnodb ORDER BY a;
18 [on slave]
19 include/sync_slave_io_with_master.inc
20 ==== Verify results on slave ====
21 include/stop_slave.inc
22 SELECT "" AS Slave_IO_State;
23 Slave_IO_State
25 SELECT "" AS Last_SQL_Error;
26 Last_SQL_Error
28 SELECT "" AS Last_IO_Error;
29 Last_IO_Error
31 SELECT * FROM tinnodb ORDER BY a;
33 ==== Clean up ====
34 [on master]
35 DROP TABLE tinnodb;
36 set @@debug= @old_debug;
37 [on slave]
38 DROP TABLE tinnodb;
39 include/rpl_end.inc