summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-31.result
blob: cc2bb45a39cd9431ba782ea2cdf83dbb5cb68d63 (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
60
61
62
63
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
connect  conn1,localhost,root,,;
DROP TABLE IF EXISTS foo;
connection conn1;
set session transaction isolation level repeatable read;
connection default;
set session transaction isolation level repeatable read;
create table foo (a int, b int, primary key (a))engine=TokUDB;
insert into foo values (1,1),(2,2),(3,3),(4,4),(5,5),(10,10),(20,20),(30,30),(40,40),(50,50);
connection conn1;
begin;
select * from foo;
a	b
1	1
2	2
3	3
4	4
5	5
10	10
20	20
30	30
40	40
50	50
# number of rows should be 8
explain select * from foo where a > 1 and a < 50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	range	PRIMARY	PRIMARY	4	NULL	8	Using where
connection default;
delete from foo where a = 2 or a = 4 or a = 10 or a = 30 or a = 50;
# number of rows should be 8
explain select * from foo where a > 1 and a < 50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	range	PRIMARY	PRIMARY	4	NULL	8	Using where
# should have just 4 values
select * from foo where a > 1 and a < 50;
a	b
3	3
5	5
20	20
40	40
connection conn1;
# number of rows should be 8
explain select * from foo where a > 1 and a < 50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	range	PRIMARY	PRIMARY	4	NULL	8	Using where
# 8 values
select * from foo where a > 1 and a < 50;
a	b
2	2
3	3
4	4
5	5
10	10
20	20
30	30
40	40
commit;
connection default;
disconnect conn1;
connection default;
set session transaction isolation level serializable;
DROP TABLE foo;