summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-18.result
blob: 9997b0545d433eb9a6af92a926cbf335e9663457 (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
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
connect  conn1,localhost,root,,;
DROP TABLE IF EXISTS foo;
connection default;
set session tokudb_load_save_space=1;
set session transaction isolation level repeatable read;
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
connection conn1;
set session tokudb_load_save_space=1;
set session transaction isolation level repeatable read;
begin;
select * from foo;
a
connection default;
begin;
insert into foo values (1),(2),(3);
# should return 1,2,3
select * from foo;
a
1
2
3
connection conn1;
# should be empty
select * from foo;
a
# verify that a bulk load was done, by trying to insert and fail due to ER_LOCK_WAIT_TIMEOUT
insert into foo values (10000);
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
commit;
connection default;
commit;
connection conn1;
# should see 1,2,3
select * from foo;
a
1
2
3
connection default;
commit;
disconnect conn1;
connection default;
set session transaction isolation level serializable;
DROP TABLE foo;