Changed how query classifier determines which statements trigger implicit commit.
Changed test makefile and rwsplit.sh script and added two example sql scripts.
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
SET autocommit = 1;
|
||||
SELECT @@server_id INTO @a;
|
||||
START TRANSACTION;
|
||||
SELECT @@server_id INTO @b;
|
||||
COMMIT;
|
||||
SELECT (@a-@b) INTO @c;
|
||||
SELECT @a, @b, @c;
|
Reference in New Issue
Block a user