1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

More updates for using NDB as default and some bug fixes along the way

This commit is contained in:
jmiller@mysql.com
2006-02-08 13:08:19 +01:00
parent e5a7238aed
commit 75b6720509
17 changed files with 95 additions and 66 deletions

View File

@@ -37,12 +37,12 @@ delimiter ;|
INSERT INTO test.t1 VALUES (1, 'example.com'),(2, 'mysql.com'),(3, 'earthmotherwear.com'), (4, 'yahoo.com'),(5, 'example.com');
select * from test.t1;
SELECT * FROM test.t1 ORDER BY id;
#show binlog events;
save_master_pos;
connection slave;
sync_with_master;
select * from test.t1;
SELECT * FROM test.t1 ORDER BY id;
connection master;
INSERT INTO test.t3 VALUES ('Yes', 5, NULL, 'spamfilter','scan_incoming');
@@ -60,11 +60,13 @@ connection master;
DELETE FROM test.t1 WHERE id = 1;
select * from test.t1;
SELECT * FROM test.t1 ORDER BY id;
connection master;
SELECT * FROM test.t1 ORDER BY id;
save_master_pos;
connection slave;
sync_with_master;
select * from test.t1;
SELECT * FROM test.t1 ORDER BY id;
connection master;
#show binlog events;