MySQL 9.0.0
Source Code Documentation
relational_expression.h
Go to the documentation of this file.
1/* Copyright (c) 2020, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef SQL_JOIN_OPTIMIZER_RELATIONAL_EXPRESSION_H
25#define SQL_JOIN_OPTIMIZER_RELATIONAL_EXPRESSION_H
26
27#include <stdint.h>
28
29#include "sql/item.h"
34#include "sql/join_type.h"
35#include "sql/mem_root_array.h"
36#include "sql/sql_class.h"
37
38struct AccessPath;
39class Item_eq_base;
40class Item_func_eq;
41
42// Some information about each predicate that the join optimizer would like to
43// have available in order to avoid computing it anew for each use of that
44// predicate.
48
49 // For equijoins only: A bitmap of which sargable predicates
50 // are part of the same multi-equality as this one (except the
51 // condition itself, which is excluded), and thus are redundant
52 // against it. This is used in AlreadyAppliedThroughSargable()
53 // to quickly find out if we already have applied any of them
54 // as a join condition.
56};
57
58// Describes a rule disallowing specific joins; if any tables from
59// needed_to_activate_rule is part of the join, then _all_ tables from
60// required_nodes must also be present.
61//
62// See FindHyperedgeAndJoinConflicts() for details.
66};
67
68/**
69 RelationalExpression objects in the same companion set are those
70 that are inner-joined against each other; we use this to see in
71 what parts of the graph we allow cycles. (Within companion sets, we
72 are also allowed to add Cartesian products if we deem that an
73 advantage, but we don't do it currently.) Tables may be alone in
74 their companion sets. Companion sets are also used when calculating
75 selectivity for equijoin predicates using multi-field indexes,
76 @see EstimateEqualPredicateSelectivity()).
77*/
78class CompanionSet final {
79 public:
80 CompanionSet() = default;
81
82 explicit CompanionSet(THD *thd) : m_equal_terms(thd->mem_root) {}
83
84 /// No copying.
85 CompanionSet(const CompanionSet &) = delete;
87
88 /// Add the set of equal fields specified by 'func_eq'.
89 void AddEquijoinCondition(THD *thd, const Item_func_eq &eq);
90
91 /**
92 If 'field' is part of an equijoin predicate in this CompanionSet, return a
93 table_map of the tables involved in that predicate. Otherwise, return 0.
94 */
95 table_map GetEqualityMap(const Field &field) const;
96
97 /// For tracing and debugging.
98 /// @returns A string representation like "{{t1.f1, t2.f2}, {t2.f3, t3.f4}}".
99 std::string ToString() const;
100
101 private:
103
104 /**
105 This represents equality between a set of fields, i.e.
106 "t1.f1=t2.f2...=tN.fN".
107 */
108 struct EqualTerm {
109 /// The fields that are equal to each other.
111
112 /// A map of all tables in 'fields'.
114 };
115
116 /**
117 The set of sets of fields in equijoin predicates in this companion set.
118 (@see EstimateEqualPredicateSelectivity() to see how this is utilized.)
119 For example, if we have:
120
121 SELECT ... FROM t1, t2, t3 WHERE t1.x=t2.x AND t2.x=t3.x AND t2.y=t3.y
122
123 m_equal_terms will contain:
124
125 {{t1.x, t2.x, t3.x}, {t2.y, t3.y}}
126 */
128};
129
130/**
131 Represents an expression tree in the relational algebra of joins.
132 Expressions are either tables, or joins of two expressions.
133 (Joins can have join conditions, but more general filters are
134 not represented in this structure.)
135
136 These are used as an abstract precursor to the join hypergraph;
137 they represent the joins in the query block more or less directly,
138 without any reordering. (The parser should largely have output a
139 structure like this instead of Table_ref, but we are not there yet.)
140 The only real manipulation we do on them is pushing down conditions,
141 identifying equijoin conditions from other join conditions,
142 and identifying join conditions that touch given tables (also a form
143 of pushdown).
144 */
146 enum Type {
147 INNER_JOIN = static_cast<int>(JoinType::INNER),
148 LEFT_JOIN = static_cast<int>(JoinType::OUTER),
149
150 /// Left semijoin.
151 SEMIJOIN = static_cast<int>(JoinType::SEMI),
152
153 /// Left antijoin.
154 ANTIJOIN = static_cast<int>(JoinType::ANTI),
155
156 // STRAIGHT_JOIN is an inner join that the user has specified
157 // is noncommutative (as a hint, but one we are not allowed to
158 // disregard).
160
161 // Generally supported by the conflict detector only, not the parser
162 // or any iterators. We include this because we will be needing it
163 // when we actually implement full outer join, and because it helps
164 // verifying semijoin correctness in the unit tests (see the CountPlans*
165 // tests).
167
168 // An inner join between two _or more_ tables, with no join conditions.
169 // This is a special form used only during pushdown, for increased
170 // flexibility in reordering. MULTI_INNER_JOIN nodes do not use
171 // left and right, but rather store all its children in multi_children
172 // (which is empty for all other types).
174
175 TABLE = 100
177
179 : multi_children(thd->mem_root),
185
187
188 // Exactly the same as tables_in_subtree, just with node indexes instead of
189 // table indexes. This is stored alongside tables_in_subtree to save the cost
190 // and convenience of doing repeated translation between the two.
192
193 // If type == TABLE.
195
196 // The CompanionSet that this object is part of.
198
199 // If type != TABLE. Note that equijoin_conditions will be split off
200 // from join_conditions fairly late (at CreateHashJoinConditions()),
201 // so often, you will see equijoin conditions in join_condition..
204 multi_children; // See MULTI_INNER_JOIN.
207
208 // For each element in join_conditions and equijoin_conditions (respectively),
209 // contains some cached properties that the join optimizer would like to have
210 // available for frequent reuse.
211 //
212 // It is a bit awkward to have these separate instead of in the same arrays,
213 // but the latter would complicate MakeJoinHypergraph() a fair amount,
214 // as this information is private to the join optimizer (ie., it is not
215 // generated along with the hypergraph; it is added after MakeJoinHypergraph()
216 // is completed).
220
221 // If true, at least one condition under “join_conditions” is a false (0)
222 // constant. (Such conditions can never be under “equijoin_conditions”.)
225 // If the join conditions were also added as predicates due to cycles
226 // in the graph (see comment in AddCycleEdges()), contains a range of
227 // which indexes they got in the predicate list. This is so that we know that
228 // they are redundant and don't have to apply them if we actually apply this
229 // join (as opposed to getting the edge implicitly by means of joining the
230 // tables along some other way in the cycle).
232
233 // Conflict rules that must be checked before making a subgraph
234 // out of this join; this is in addition to the regular connectivity
235 // check. See FindHyperedgeAndJoinConflicts() for more details.
237
240 }
241
242 /// Add a condition that can be pushed down to the acces path for 'table'.
243 void AddPushable(Item *cond) {
244 assert(type == TABLE);
245 assert(table->map() && cond->used_tables() != 0);
246 // Don't add duplicates.
247 if (std::none_of(
249 [&](const Item *other) { return ItemsAreEqual(cond, other); })) {
250 m_pushable_conditions.push_back(cond);
251 }
252 }
253
254 private:
255 /// Conditions that can be pushed down to the acces path for 'table'
257};
258
259// Check conflict rules; usually, they will be empty, but the hyperedges are
260// not able to encode every single combination of disallowed joins.
261inline bool PassesConflictRules(hypergraph::NodeMap joined_tables,
262 const RelationalExpression *expr) {
263 for (const ConflictRule &rule : expr->conflict_rules) {
264 if (Overlaps(joined_tables, rule.needed_to_activate_rule) &&
265 !IsSubset(rule.required_nodes, joined_tables)) {
266 return false;
267 }
268 }
269 return true;
270}
271
272// Whether (a <expr> b) === (b <expr> a). See also OperatorsAreAssociative() and
273// OperatorsAre{Left,Right}Asscom() in make_join_hypergraph.cc.
275 return expr.type == RelationalExpression::INNER_JOIN ||
277}
278
279// Call the given functor on each non-table operator in the tree below expr,
280// including expr itself, in post-traversal order.
281template <class Func>
283 if (expr->type == RelationalExpression::TABLE) {
284 return;
285 }
286 ForEachJoinOperator(expr->left, std::forward<Func &&>(func));
287 ForEachJoinOperator(expr->right, std::forward<Func &&>(func));
288 func(expr);
289}
290
291template <class Func>
292void ForEachOperator(RelationalExpression *expr, Func &&func) {
293 if (expr->type != RelationalExpression::TABLE) {
294 ForEachOperator(expr->left, std::forward<Func &&>(func));
295 ForEachOperator(expr->right, std::forward<Func &&>(func));
296 }
297 func(expr);
298}
299
300/// The collection of CompanionSet objects for a given JoinHypergraph.
302 public:
304 Compute(thd, root, nullptr);
305 }
306
307 /// No copying.
310
311 CompanionSet *Find(table_map tables) { return FindInternal(tables); }
312
313 const CompanionSet *Find(table_map tables) const {
314 return FindInternal(tables);
315 }
316
317 /// For trace and debugging.
318 std::string ToString() const;
319
320 private:
321 /// A mapping from table number to CompanionSet.
322 std::array<CompanionSet *, MAX_TABLES> m_table_num_to_companion_set{nullptr};
323
324 /**
325 Compute the CompanionSet of 'expr' and all of its descendants.
326 @param thd The current thread.
327 @param expr Compute CompanionSet of this and all of its descendants.
328 @param current_set The CompanionSet to which 'expr' will belong, or
329 nullptr if 'expr' is the root of a new set.
330 */
331 void Compute(THD *thd, RelationalExpression *expr, CompanionSet *current_set);
332
333 /**
334 For a given set of tables, find the CompanionSet they are part of
335 Returns nullptr if the tables are in different (i.e., incompatible)
336 CompanionSet instances. If so, a condition using this set of
337 tables can _not_ induce a new (cycle) edge in the hypergraph, as
338 there are non-inner joins in the way.
339 */
340 CompanionSet *FindInternal(table_map tables) const;
341};
342
343#endif // SQL_JOIN_OPTIMIZER_RELATIONAL_EXPRESSION_H
bool IsSubset(uint64_t x, uint64_t y)
Definition: bit_utils.h:221
bool Overlaps(uint64_t x, uint64_t y)
Definition: bit_utils.h:229
The collection of CompanionSet objects for a given JoinHypergraph.
Definition: relational_expression.h:301
CompanionSet * Find(table_map tables)
Definition: relational_expression.h:311
CompanionSet * FindInternal(table_map tables) const
For a given set of tables, find the CompanionSet they are part of Returns nullptr if the tables are i...
Definition: relational_expression.cc:199
CompanionSetCollection(const CompanionSetCollection &)=delete
No copying.
void Compute(THD *thd, RelationalExpression *expr, CompanionSet *current_set)
Compute the CompanionSet of 'expr' and all of its descendants.
Definition: relational_expression.cc:149
std::array< CompanionSet *, MAX_TABLES > m_table_num_to_companion_set
A mapping from table number to CompanionSet.
Definition: relational_expression.h:322
CompanionSetCollection & operator=(const CompanionSetCollection &)=delete
CompanionSetCollection(THD *thd, struct RelationalExpression *root)
Definition: relational_expression.h:303
std::string ToString() const
For trace and debugging.
Definition: relational_expression.cc:181
const CompanionSet * Find(table_map tables) const
Definition: relational_expression.h:313
RelationalExpression objects in the same companion set are those that are inner-joined against each o...
Definition: relational_expression.h:78
CompanionSet & operator=(const CompanionSet &)=delete
CompanionSet()=default
Mem_root_array< EqualTerm > m_equal_terms
The set of sets of fields in equijoin predicates in this companion set.
Definition: relational_expression.h:127
table_map GetEqualityMap(const Field &field) const
If 'field' is part of an equijoin predicate in this CompanionSet, return a table_map of the tables in...
Definition: relational_expression.cc:121
CompanionSet(const CompanionSet &)=delete
No copying.
CompanionSet(THD *thd)
Definition: relational_expression.h:82
std::string ToString() const
For tracing and debugging.
Definition: relational_expression.cc:132
void AddEquijoinCondition(THD *thd, const Item_func_eq &eq)
Add the set of equal fields specified by 'func_eq'.
Definition: relational_expression.cc:66
Definition: field.h:577
Base class for the equality comparison operators = and <=>.
Definition: item_cmpfunc.h:995
Implements the comparison operator equals (=)
Definition: item_cmpfunc.h:1060
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:930
virtual table_map used_tables() const
Definition: item.h:2361
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Definition: overflow_bitset.h:78
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
Definition: table.h:2871
table_map map() const
Return table map derived from table number.
Definition: table.h:3989
static MEM_ROOT mem_root
Definition: client_plugin.cc:114
@ OUTER
Left outer join.
@ ANTI
Left antijoin, i.e.
@ SEMI
Left semijoin, i.e.
uint64_t table_map
Definition: my_table_map.h:30
uint64_t NodeMap
Since our graphs can never have more than 61 tables, node sets and edge lists are implemented using 6...
Definition: node_map.h:40
OverflowBitset is a fixed-size (once allocated) bitmap that is optimized for the common case of few e...
void ForEachOperator(RelationalExpression *expr, Func &&func)
Definition: relational_expression.h:292
void ForEachJoinOperator(RelationalExpression *expr, Func &&func)
Definition: relational_expression.h:282
bool PassesConflictRules(hypergraph::NodeMap joined_tables, const RelationalExpression *expr)
Definition: relational_expression.h:261
bool OperatorIsCommutative(const RelationalExpression &expr)
Definition: relational_expression.h:274
Access paths are a query planning structure that correspond 1:1 to iterators, in that an access path ...
Definition: access_path.h:213
Definition: relational_expression.h:45
double selectivity
Definition: relational_expression.h:47
Mem_root_array< ContainedSubquery > contained_subqueries
Definition: relational_expression.h:46
OverflowBitset redundant_against_sargable_predicates
Definition: relational_expression.h:55
This represents equality between a set of fields, i.e.
Definition: relational_expression.h:108
FieldArray * fields
The fields that are equal to each other.
Definition: relational_expression.h:110
table_map tables
A map of all tables in 'fields'.
Definition: relational_expression.h:113
Definition: relational_expression.h:63
hypergraph::NodeMap required_nodes
Definition: relational_expression.h:65
hypergraph::NodeMap needed_to_activate_rule
Definition: relational_expression.h:64
Represents an expression tree in the relational algebra of joins.
Definition: relational_expression.h:145
int join_predicate_last
Definition: relational_expression.h:231
Mem_root_array< CachedPropertiesForPredicate > properties_for_equijoin_conditions
Definition: relational_expression.h:219
const Mem_root_array< Item * > & pushable_conditions() const
Definition: relational_expression.h:238
Mem_root_array< Item_eq_base * > equijoin_conditions
Definition: relational_expression.h:206
int join_predicate_first
Definition: relational_expression.h:231
Mem_root_array< ConflictRule > conflict_rules
Definition: relational_expression.h:236
enum RelationalExpression::Type type
CompanionSet * companion_set
Definition: relational_expression.h:197
RelationalExpression(THD *thd)
Definition: relational_expression.h:178
void AddPushable(Item *cond)
Add a condition that can be pushed down to the acces path for 'table'.
Definition: relational_expression.h:243
table_map tables_in_subtree
Definition: relational_expression.h:186
const Table_ref * table
Definition: relational_expression.h:194
hypergraph::NodeMap nodes_in_subtree
Definition: relational_expression.h:191
Mem_root_array< RelationalExpression * > multi_children
Definition: relational_expression.h:204
table_map conditions_used_tables
Definition: relational_expression.h:224
Mem_root_array< Item * > join_conditions
Definition: relational_expression.h:205
Type
Definition: relational_expression.h:146
@ SEMIJOIN
Left semijoin.
Definition: relational_expression.h:151
@ MULTI_INNER_JOIN
Definition: relational_expression.h:173
@ STRAIGHT_INNER_JOIN
Definition: relational_expression.h:159
@ ANTIJOIN
Left antijoin.
Definition: relational_expression.h:154
@ INNER_JOIN
Definition: relational_expression.h:147
@ FULL_OUTER_JOIN
Definition: relational_expression.h:166
@ TABLE
Definition: relational_expression.h:175
@ LEFT_JOIN
Definition: relational_expression.h:148
Mem_root_array< Item * > m_pushable_conditions
Conditions that can be pushed down to the acces path for 'table'.
Definition: relational_expression.h:256
bool join_conditions_reject_all_rows
Definition: relational_expression.h:223
Mem_root_array< CachedPropertiesForPredicate > properties_for_join_conditions
Definition: relational_expression.h:217
RelationalExpression * left
Definition: relational_expression.h:202
RelationalExpression * right
Definition: relational_expression.h:202
Definition: table.h:1407