summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-35.result
blob: 83af37b1cfc4630ca89891610ed87200fbac4db9 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
# Establish connection conn1 (user = root)
connect  conn1,localhost,root,,;
DROP TABLE IF EXISTS foo;
connection default;
set session transaction isolation level read committed;
create table foo (a int, b int, c int, primary key (a), key (b))engine=TokuDB;
show create table foo;
Table	Create Table
foo	CREATE TABLE `foo` (
  `a` int(11) NOT NULL,
  `b` int(11) DEFAULT NULL,
  `c` int(11) DEFAULT NULL,
  PRIMARY KEY (`a`),
  KEY `b` (`b`)
) ENGINE=TokuDB DEFAULT CHARSET=latin1
insert into foo values (1,10,100),(2,20,200),(3,30,300),(4,40,400),(5,50,500),(6,60,600),(7,70,700),(8,80,800),(9,90,900);
begin;
select * from foo;
a	b	c
1	10	100
2	20	200
3	30	300
4	40	400
5	50	500
6	60	600
7	70	700
8	80	800
9	90	900
# should use key b
explain select * from foo where b=50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	ref	b	b	5	const	1	
# should get (5,50,500)
select * from foo where b=50;
a	b	c
5	50	500
replace into foo values (5,50,1515);
connection conn1;
set session transaction isolation level read committed;
begin;
# should use key b
explain select * from foo where b=50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	ref	b	b	5	const	1	
# should get (5,50,500)
select * from foo where b=50;
a	b	c
5	50	500
connection default;
commit;
# should use key b
explain select * from foo where b=50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	ref	b	b	5	const	1	
# should get (5,50,1515)
select * from foo where b=50;
a	b	c
5	50	1515
connection conn1;
# should use key b
explain select * from foo where b=50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	ref	b	b	5	const	1	
# should get (5,50,1515)
select * from foo where b=50;
a	b	c
5	50	1515
commit;
# should use key b
explain select * from foo where b=50;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	foo	ref	b	b	5	const	1	
# should get (5,50,1515)
select * from foo where b=50;
a	b	c
5	50	1515
connection default;
disconnect conn1;
connection default;
set session transaction isolation level serializable;
DROP TABLE foo;