summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/locks-select-update-3.result
blob: 62b65a8535b35a0bce9a1c2c14232a34a27c23a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
SET DEFAULT_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;
connect conn1,localhost,root;
set session transaction isolation level read committed;
begin;
select * from t where a=1 for update;
connection default;
commit;
connection conn1;
a	b
1	1
update t set b=b+1 where a=1;
select * from t;
a	b
1	2
commit;
connection default;
disconnect conn1;
drop table t;