mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
23 lines
459 B
Text
23 lines
459 B
Text
|
set storage_engine='tokudb';
|
||
|
drop table if exists t;
|
||
|
create table t (a int primary key, b int);
|
||
|
insert into t values (1,0);
|
||
|
set session transaction isolation level repeatable read;
|
||
|
begin;
|
||
|
select * from t where a=1 for update;
|
||
|
a b
|
||
|
1 0
|
||
|
update t set b=b+1 where a=1;
|
||
|
set session transaction isolation level repeatable read;
|
||
|
begin;
|
||
|
select * from t where a=1 for update;
|
||
|
commit;
|
||
|
a b
|
||
|
1 1
|
||
|
update t set b=b+1 where a=1;
|
||
|
select * from t;
|
||
|
a b
|
||
|
1 2
|
||
|
commit;
|
||
|
drop table t;
|