Files
MaxScale/system-test/Hartmut_tests/maxscale-mysqltest/r/set_autocommit_disabled.result
Esa Korhonen 08f5174915 MXS-2900 Rename maxscale-system-test directory to system-test
A link with the old directory name is provided.
2020-07-28 15:24:27 +03:00

9 lines
139 B
Plaintext

USE test;
drop table if exists t1;
create table t1 (id integer);
set autocommit=0;
begin;
insert into t1 values(1);
commit;
drop table t1;