summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-31.result
blob: cb55f679061c8855c32bb7076f469892e0ed53c3 (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
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
DROP TABLE IF EXISTS foo;
set session transaction isolation level repeatable read;
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);
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
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	5	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
# 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	5	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;
set session transaction isolation level serializable;
DROP TABLE foo;