Added missing test files for rwsplit router tests.

This commit is contained in:
VilhoRaatikka
2014-04-16 10:25:32 +03:00
parent c994c81a0e
commit 81af54730a
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,7 @@
use test;
drop table if exists t1;
create table t1 (id integer);
set autocommit=OFF; -- open transaction
insert into t1 values(1); -- write to master
select count(*) from t1; -- read from master
drop table t1;