mariadb/mysql-test/suite/tokudb.locks/r/select-update-3.result
Rich Prohaska b882892cea #3557 merge write locking test bug fixes from 5.0.5 to main refs[t:3557]
git-svn-id: file:///svn/mysql/tests/mysql-test@32094 c7de825b-a66e-492c-adef-691d508d4ae1
2011-06-26 19:07:07 +00:00

22 lines
457 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 read committed;
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 read committed;
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;