Added missing test files for rwsplit router tests.
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
USE test;
|
||||
SET autocommit = oFf;
|
||||
CREATE TABLE IF NOT EXISTS myCity (a int, b char(20));
|
||||
INSERT INTO myCity VALUES (1, 'Milan');
|
||||
INSERT INTO myCity VALUES (2, 'London');
|
||||
COMMIT;
|
||||
DELETE FROM myCity; -- implicit transaction started
|
||||
SELECT COUNT(*) FROM myCity; -- read transaction's modifications from master
|
||||
COMMIT;
|
Reference in New Issue
Block a user