summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/include/cluster_key.inc
blob: 1914da14bb31e120f86eacc9683e9ced7d651c65 (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
# test for TokuDB clustering keys.
# test assumes that a table 't1' exists with the following columns:
# a int, b int, c int, d int
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),(10,100,1000,10000),(11,110,1100,11000);


#normal queries

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where a > 5;
select * from t1 where a > 5;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where b > 70;
select * from t1 where b > 70;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where c > 950;
select * from t1 where c > 950;

#covering indexes

# ignore rows column
--replace_column 9 NULL;
explain select a from t1 where a > 10;
select a from t1 where a > 10;

# ignore rows column
--replace_column 9 NULL;
explain select a,b from t1 where b > 30;
select a,b from t1 where b > 30;

# ignore rows column
--replace_column 9 NULL;
explain select a,b from t1 where c > 350;
select a,c from t1 where c > 350;


alter table t1 add index bdca(b,d,c,a) clustering=yes;
insert into t1 values (10,10,10,10);
alter table t1 drop index bdca;

alter table t1 drop primary key;
# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where a > 5;
select * from t1 where a > 5;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where b > 70;
select * from t1 where b > 70;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where c > 950;
select * from t1 where c > 950;

#covering indexes

# ignore rows column
--replace_column 9 NULL;
explain select b from t1 where b > 70;
select b from t1 where b > 70;

# ignore rows column
--replace_column 9 NULL;
explain select b from t1 where c > 950;
select c from t1 where c > 950;

alter table t1 add e varchar(20);

alter table t1 add primary key (a,b,c);

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where a > 8;
select * from t1 where a > 8;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where b > 70;
select * from t1 where b > 70;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where c > 950;
select * from t1 where c > 950;

#covering indexes

# ignore rows column
--replace_column 9 NULL;
explain select a from t1 where a > 10;
select a from t1 where a > 10;

# ignore rows column
--replace_column 9 NULL;
explain select a,b from t1 where b > 30;
select a,b from t1 where b > 30;

# ignore rows column
--replace_column 9 NULL;
explain select a,b from t1 where c > 350;
select a,c from t1 where c > 350;


alter table t1 drop primary key;
# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where a > 5;
select * from t1 where a > 5;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where b > 70;
select * from t1 where b > 70;

# ignore rows column
--replace_column 9 NULL;
explain select * from t1 where c > 950;
select * from t1 where c > 950;

#covering indexes
# ignore rows column
--replace_column 9 NULL;
explain select b from t1 where b > 70;
select b from t1 where b > 70;

# ignore rows column
--replace_column 9 NULL;
explain select b from t1 where c > 950;
select c from t1 where c > 950;