summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-7.result
blob: 3baa212c49008d61a175189ad59ece008fff1aa8 (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
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
DROP TABLE IF EXISTS foo;
set session transaction isolation level repeatable read;
create table foo (a int, b int, primary key (a))engine=TokuDB;
show create table foo;
Table	Create Table
foo	CREATE TABLE `foo` (
  `a` int(11) NOT NULL,
  `b` int(11) DEFAULT NULL,
  PRIMARY KEY (`a`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1
insert into foo values (1,100);
select * from foo;
a	b
1	100
begin;
insert into foo values (100,100);
# should see (1,100)
select * from foo;
a	b
1	100
100	100
set session transaction isolation level repeatable read;
# should NOT see (1,100)
select * from foo;
a	b
1	100
# should see (1,100)
select * from foo;
a	b
1	100
100	100
rollback;
# should NOT see (1,100)
select * from foo;
a	b
1	100
set session transaction isolation level serializable;
DROP TABLE foo;