1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

SQL: disable versioned DML for transaction_registry=off [closes #364]

This commit is contained in:
Aleksey Midenkov
2017-11-28 18:12:18 +03:00
parent dcc00d2be3
commit f924a94d2f
7 changed files with 48 additions and 18 deletions

View File

@ -355,6 +355,11 @@ rollback to a;
commit;
call verify_vtq;
No A B C D
set global transaction_registry= off;
insert into t2(x) values (1);
insert into t1(x) values (1);
ERROR HY000: Some versioned DML requires `transaction_registry` to be set to ON.
set global transaction_registry= on;
drop table t1;
drop table t2;
drop procedure test_01;