Commit 4a2a58e1 authored by unknown's avatar unknown

corrected really strange test

parent bbd7a43f
...@@ -56,15 +56,12 @@ DELETE FROM t1 WHERE c3 = 2; ...@@ -56,15 +56,12 @@ DELETE FROM t1 WHERE c3 = 2;
SELECT * FROM t1 ORDER BY c3; SELECT * FROM t1 ORDER BY c3;
save_master_pos;
# insert another row, and check that we have it on the slave # insert another row, and check that we have it on the slave
connection server2; connection server2;
INSERT INTO t1 VALUES ("row5","E",5); INSERT INTO t1 VALUES ("row5","E",5);
SELECT * FROM t1 ORDER BY c3; SELECT * FROM t1 ORDER BY c3;
#sync_slave_with_master; sync_slave_with_master;
connection slave; connection slave;
--sleep 2
SELECT * FROM t1 ORDER BY c3; SELECT * FROM t1 ORDER BY c3;
STOP SLAVE; STOP SLAVE;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment