summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb/r/cluster_delete.result
blob: 60eff9ebc9ad8972e900ab9ae3a3c0e74827b819 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
SET DEFAULT_STORAGE_ENGINE='tokudb';
DROP TABLE IF EXISTS t1;
create table t1(a int, b int, c int, d int, primary key(a), clustering key(b), key (c))engine=tokudb;
insert into t1 values (1,10,100,1000),(2,20,200,2000),(3,30,300,3000),(4,40,400,4000),(5,50,500,5000),(6,60,600,6000),(7,70,700,7000),(8,80,800,8000),(9,90,900,9000);
explain select * from t1 where a > 5;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	PRIMARY	PRIMARY	4	NULL	NULL;	Using where
select * from t1 where a > 5;
a	b	c	d
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where
select * from t1 where b > 30;
a	b	c	d
4	40	400	4000
5	50	500	5000
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	NULL;	Using where
select * from t1 where c > 750;
a	b	c	d
8	80	800	8000
9	90	900	9000
explain select a from t1 where a > 8;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	PRIMARY	PRIMARY	4	NULL	NULL;	Using where; Using index
select a from t1 where a > 8;
a
9
explain select a,b from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where; Using index
select a,b from t1 where b > 30;
a	b
4	40
5	50
6	60
7	70
8	80
9	90
explain select a,b from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	NULL;	Using where
select a,c from t1 where c > 750;
a	c
8	800
9	900
delete from t1 where b>30 and b < 60;
select * from t1;
a	b	c	d
1	10	100	1000
2	20	200	2000
3	30	300	3000
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where a > 5;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	PRIMARY	PRIMARY	4	NULL	NULL;	Using where
select * from t1 where a > 5;
a	b	c	d
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where
select * from t1 where b > 30;
a	b	c	d
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	NULL;	Using where
select * from t1 where c > 750;
a	b	c	d
8	80	800	8000
9	90	900	9000
explain select a from t1 where a > 8;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	PRIMARY	PRIMARY	4	NULL	NULL;	Using where; Using index
select a from t1 where a > 8;
a
9
explain select a,b from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where; Using index
select a,b from t1 where b > 30;
a	b
6	60
7	70
8	80
9	90
explain select a,b from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	NULL;	Using where
select a,c from t1 where c > 750;
a	c
8	800
9	900
alter table t1 drop primary key;
explain select * from t1 where a > 5;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ALL	NULL	NULL	NULL	NULL	NULL;	Using where
select * from t1 where a > 5;
a	b	c	d
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where
select * from t1 where b > 30;
a	b	c	d
6	60	600	6000
7	70	700	7000
8	80	800	8000
9	90	900	9000
explain select * from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	NULL;	Using where
select * from t1 where c > 750;
a	b	c	d
8	80	800	8000
9	90	900	9000
explain select a from t1 where a > 5;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ALL	NULL	NULL	NULL	NULL	NULL;	Using where
select a from t1 where a > 5;
a
6
7
8
9
explain select a,b from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where
select a,b from t1 where b > 30;
a	b
6	60
7	70
8	80
9	90
explain select a,b from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	NULL;	Using where
select a,c from t1 where c > 750;
a	c
8	800
9	900
delete from t1 where b > 10 and b < 90;
select * from t1;
a	b	c	d
1	10	100	1000
9	90	900	9000
explain select * from t1 where a > 5;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ALL	NULL	NULL	NULL	NULL	NULL;	Using where
select * from t1 where a > 5;
a	b	c	d
9	90	900	9000
explain select * from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where
select * from t1 where b > 30;
a	b	c	d
9	90	900	9000
explain select * from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ALL	c	NULL	NULL	NULL	NULL;	Using where
select * from t1 where c > 750;
a	b	c	d
9	90	900	9000
explain select a from t1 where a > 5;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ALL	NULL	NULL	NULL	NULL	NULL;	Using where
select a from t1 where a > 5;
a
9
explain select a,b from t1 where b > 30;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	b	b	5	NULL	NULL;	Using where
select a,b from t1 where b > 30;
a	b
9	90
explain select a,b from t1 where c > 750;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	ALL	c	NULL	NULL	NULL	NULL;	Using where
select a,c from t1 where c > 750;
a	c
9	900
drop table t1;