summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb/r/mvcc-1.result
blob: 439c5e897abc1710143a2259f5d23767d36401ae (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
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
DROP TABLE IF EXISTS foo;
set session transaction isolation level repeatable read;
create table foo (a int);
select * from foo;
a
begin;
insert into foo values (1);
select * from foo;
a
1
rollback;
select * from foo;
a
set session transaction isolation level read committed;
begin;
insert into foo values (1);
select * from foo;
a
1
rollback;
select * from foo;
a
DROP TABLE foo;