mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
f6682e2743
Moved .progress files into the log directory Moved 'cluster' database tables into the MySQL database, to not have 'cluster' beeing a reserved database name Fixed bug where mysqld got a core dump when trying to use a table created by MySQL 3.23 Fixed some compiler warnings Fixed small memory leak in libmysql Note that this doesn't changeset doesn't include the new mysqldump.c code required to run some tests. This will be added when I merge 5.0 to 5.1
91 lines
3.1 KiB
Text
91 lines
3.1 KiB
Text
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
|
|
master-bin.000001 4 Format_desc 1 102 Server ver: SERVER_VERSION, Binlog ver: 4
|
|
master-bin.000001 102 Query 1 219 use `test`; CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB
|
|
master-bin.000001 219 Query 1 283 BEGIN
|
|
master-bin.000001 283 Table_map 1 40 table_id: # (test.t1)
|
|
master-bin.000001 323 Table_map 1 91 table_id: # (mysql.apply_status)
|
|
master-bin.000001 374 Write_rows 1 133 table_id: #
|
|
master-bin.000001 416 Write_rows 1 180 table_id: # flags: STMT_END_F
|
|
master-bin.000001 463 Query 1 528 COMMIT
|
|
master-bin.000001 528 Query 1 608 use `test`; TRUNCATE TABLE t1
|
|
master-bin.000001 608 Query 1 684 use `test`; DROP TABLE t1
|
|
**** 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
|
|
master-bin.000001 4 Format_desc 1 102 Server ver: SERVER_VERSION, Binlog ver: 4
|
|
master-bin.000001 102 Query 1 219 use `test`; CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB
|
|
master-bin.000001 219 Query 1 283 BEGIN
|
|
master-bin.000001 283 Table_map 1 40 table_id: # (test.t1)
|
|
master-bin.000001 323 Table_map 1 91 table_id: # (mysql.apply_status)
|
|
master-bin.000001 374 Write_rows 1 133 table_id: #
|
|
master-bin.000001 416 Write_rows 1 180 table_id: # flags: STMT_END_F
|
|
master-bin.000001 463 Query 1 528 COMMIT
|
|
master-bin.000001 528 Query 1 608 use `test`; TRUNCATE TABLE t1
|
|
master-bin.000001 608 Query 1 684 use `test`; DROP TABLE t1
|
|
master-bin.000001 684 Query 1 801 use `test`; CREATE TABLE t1 (a INT PRIMARY KEY, b LONG) ENGINE=NDB
|
|
master-bin.000001 801 Query 1 865 BEGIN
|
|
master-bin.000001 865 Table_map 1 40 table_id: # (test.t1)
|
|
master-bin.000001 905 Table_map 1 91 table_id: # (mysql.apply_status)
|
|
master-bin.000001 956 Write_rows 1 133 table_id: #
|
|
master-bin.000001 998 Write_rows 1 180 table_id: # flags: STMT_END_F
|
|
master-bin.000001 1045 Query 1 1110 COMMIT
|
|
master-bin.000001 1110 Query 1 1174 BEGIN
|
|
master-bin.000001 1174 Table_map 1 40 table_id: # (test.t1)
|
|
master-bin.000001 1214 Table_map 1 91 table_id: # (mysql.apply_status)
|
|
master-bin.000001 1265 Write_rows 1 133 table_id: #
|
|
master-bin.000001 1307 Delete_rows 1 172 table_id: # flags: STMT_END_F
|
|
master-bin.000001 1346 Query 1 1411 COMMIT
|
|
master-bin.000001 1411 Query 1 1487 use `test`; DROP TABLE t1
|