2
#ifndef DRIZZLED_OPTIMIZER_TABLE_READ_PLAN_H
3
#define DRIZZLED_OPTIMIZER_TABLE_READ_PLAN_H
6
struct st_ror_scan_info;
18
Table rows retrieval plan. Range optimizer creates QuickSelectInterface-derived
19
objects from table read plans.
25
Plan read cost, with or without cost of full row retrieval, depending
26
on plan creation parameters.
29
ha_rows records; /* estimate of #rows to be examined */
32
If true, the scan returns rows in rowid order. This is used only for
33
scans that can be both ROR and non-ROR.
38
Create quick select for this plan.
41
param Parameter from test_quick_select
42
retrieve_full_rows If true, created quick select will do full record
44
parent_alloc Memory pool to use, if any.
47
retrieve_full_rows is ignored by some implementations.
53
virtual QuickSelectInterface *make_quick(Parameter *param,
54
bool retrieve_full_rows,
55
MEM_ROOT *parent_alloc= NULL) = 0;
57
/* Table read plans are allocated on MEM_ROOT and are never deleted */
58
static void *operator new(size_t size, MEM_ROOT *mem_root)
60
return (void*) alloc_root(mem_root, (uint32_t) size);
63
static void operator delete(void *, size_t)
68
static void operator delete(void *, MEM_ROOT *)
69
{ /* Never called */ }
71
virtual ~TABLE_READ_PLAN() {} /* Remove gcc warning */
77
Plan for a QuickRangeSelect scan.
78
TRP_RANGE::make_quick ignores retrieve_full_rows parameter because
79
QuickRangeSelect doesn't distinguish between 'index only' scans and full
80
record retrieval scans.
82
class TRP_RANGE : public TABLE_READ_PLAN
87
SEL_ARG *key; /* set of intervals to be used in "range" method retrieval */
88
uint32_t key_idx; /* key number in Parameter::key */
90
uint32_t mrr_buf_size;
92
TRP_RANGE(SEL_ARG *key_arg, uint32_t idx_arg, uint32_t mrr_flags_arg)
96
mrr_flags(mrr_flags_arg)
98
virtual ~TRP_RANGE() {} /* Remove gcc warning */
100
QuickSelectInterface *make_quick(Parameter *param, bool, MEM_ROOT *parent_alloc);
105
/* Plan for QuickRorIntersectSelect scan. */
107
class TRP_ROR_INTERSECT : public TABLE_READ_PLAN
110
TRP_ROR_INTERSECT() {} /* Remove gcc warning */
111
virtual ~TRP_ROR_INTERSECT() {} /* Remove gcc warning */
112
QuickSelectInterface *make_quick(Parameter *param,
113
bool retrieve_full_rows,
114
MEM_ROOT *parent_alloc);
116
/* Array of pointers to ROR range scans used in this intersection */
117
struct st_ror_scan_info **first_scan;
118
struct st_ror_scan_info **last_scan; /* End of the above array */
119
struct st_ror_scan_info *cpk_scan; /* Clustered PK scan, if there is one */
120
bool is_covering; /* true if no row retrieval phase is necessary */
121
double index_scan_costs; /* SUM(cost(index_scan)) */
126
Plan for QuickRorUnionSelect scan.
127
QuickRorUnionSelect always retrieves full rows, so retrieve_full_rows
128
is ignored by make_quick.
131
class TRP_ROR_UNION : public TABLE_READ_PLAN
134
TRP_ROR_UNION() {} /* Remove gcc warning */
135
virtual ~TRP_ROR_UNION() {} /* Remove gcc warning */
136
QuickSelectInterface *make_quick(Parameter *param,
137
bool retrieve_full_rows,
138
MEM_ROOT *parent_alloc);
139
TABLE_READ_PLAN **first_ror; /* array of ptrs to plans for merged scans */
140
TABLE_READ_PLAN **last_ror; /* end of the above array */
145
Plan for QuickIndexMergeSelect scan.
146
QuickRorIntersectSelect always retrieves full rows, so retrieve_full_rows
147
is ignored by make_quick.
150
class TRP_INDEX_MERGE : public TABLE_READ_PLAN
153
TRP_INDEX_MERGE() {} /* Remove gcc warning */
154
virtual ~TRP_INDEX_MERGE() {} /* Remove gcc warning */
155
QuickSelectInterface *make_quick(Parameter *param,
156
bool retrieve_full_rows,
157
MEM_ROOT *parent_alloc);
158
TRP_RANGE **range_scans; /* array of ptrs to plans of merged scans */
159
TRP_RANGE **range_scans_end; /* end of the array */
164
Plan for a QuickGroupMinMaxSelect scan.
167
class TRP_GROUP_MIN_MAX : public TABLE_READ_PLAN
172
KEY_PART_INFO *min_max_arg_part;
173
uint32_t group_prefix_len;
174
uint32_t used_key_parts;
175
uint32_t group_key_parts;
178
uint32_t key_infix_len;
179
unsigned char key_infix[MAX_KEY_LENGTH];
180
SEL_TREE *range_tree; /* Represents all range predicates in the query. */
181
SEL_ARG *index_tree; /* The SEL_ARG sub-tree corresponding to index_info. */
182
uint32_t param_idx; /* Index of used key in param->key. */
183
/* Number of records selected by the ranges in index_tree. */
185
ha_rows quick_prefix_records;
188
TRP_GROUP_MIN_MAX(bool have_min_arg,
190
KEY_PART_INFO *min_max_arg_part_arg,
191
uint32_t group_prefix_len_arg,
192
uint32_t used_key_parts_arg,
193
uint32_t group_key_parts_arg,
196
uint32_t key_infix_len_arg,
197
unsigned char *key_infix_arg,
199
SEL_ARG *index_tree_arg,
200
uint32_t param_idx_arg,
201
ha_rows quick_prefix_records_arg)
203
have_min(have_min_arg),
204
have_max(have_max_arg),
205
min_max_arg_part(min_max_arg_part_arg),
206
group_prefix_len(group_prefix_len_arg),
207
used_key_parts(used_key_parts_arg),
208
group_key_parts(group_key_parts_arg),
209
index_info(index_info_arg),
211
key_infix_len(key_infix_len_arg),
212
range_tree(tree_arg),
213
index_tree(index_tree_arg),
214
param_idx(param_idx_arg),
215
quick_prefix_records(quick_prefix_records_arg)
218
memcpy(this->key_infix, key_infix_arg, key_infix_len);
220
virtual ~TRP_GROUP_MIN_MAX() {} /* Remove gcc warning */
222
QuickSelectInterface *make_quick(Parameter *param,
223
bool retrieve_full_rows,
224
MEM_ROOT *parent_alloc);
228
} /* namespace optimizer */
230
} /* namespace drizzled */
232
#endif /* DRIZZLED_OPTIMIZER_TABLE_READ_PLAN_H */