summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-2808-read-uncommitted.result
blob: e8ffcc7f843efe5e629fe3e71fb19c6ef83c2383 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Establish connection conn1 (user = root)
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS foo,foo_isam;
set session transaction isolation level read uncommitted;
create table foo ( a int, b int, primary key (a));
insert into foo values (1,1),(2,2),(3,1),(4,3);
select * from foo;
a	b
1	1
2	2
3	1
4	3
begin;
update foo set b=10 where b=1;
select * from foo;
a	b
1	10
2	2
3	10
4	3
insert into foo values (5,5);
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
select * from foo;
a	b
1	1
2	2
3	1
4	3
begin;
delete from foo where b=2;
select * from foo;
a	b
1	1
3	1
4	3
insert into foo values (5,5);
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
select * from foo;
a	b
1	1
2	2
3	1
4	3
create table foo_isam (a int, b int)engine=MyISAM;
begin;
insert into foo_isam select * from foo;
insert into foo values (5,5);
select * from foo;
a	b
1	1
2	2
3	1
4	3
5	5
commit;
set session transaction isolation level serializable;
DROP TABLE foo, foo_isam;