summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-40.result
blob: 1330fe41c5075da1e40b26f51771625e81991063 (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
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
DROP TABLE IF EXISTS foo;
set session tokudb_load_save_space=0;
create table foo (a int) engine=TokuDB;
show create table foo;
Table	Create Table
foo	CREATE TABLE `foo` (
  `a` int(11) DEFAULT NULL
) ENGINE=TokuDB DEFAULT CHARSET=latin1
insert into foo values (1),(2),(3);
set session transaction isolation level repeatable read;
begin;
# should return (1),(2),(3)
select * from foo;
a
1
2
3
delete from foo;
insert into foo values (4);
# should return (4)
select * from foo;
a
4
# should return (1),(2),(3)
select * from foo;
a
1
2
3
set session transaction isolation level serializable;
DROP TABLE foo;