MySQL 9.1.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#include <type_traits>
29
30#include "sql/item.h"
35#include "sql/join_type.h"
36#include "sql/mem_root_array.h"
37#include "sql/nested_join.h"
38#include "sql/sql_class.h"
39
40struct AccessPath;
41class Item_eq_base;
42class Item_func_eq;
43
44// Some information about each predicate that the join optimizer would like to
45// have available in order to avoid computing it anew for each use of that
46// predicate.
50
51 // For equijoins only: A bitmap of which sargable predicates
52 // are part of the same multi-equality as this one (except the
53 // condition itself, which is excluded), and thus are redundant
54 // against it. This is used in AlreadyAppliedThroughSargable()
55 // to quickly find out if we already have applied any of them
56 // as a join condition.
58};
59
60// Describes a rule disallowing specific joins; if any tables from
61// needed_to_activate_rule is part of the join, then _all_ tables from
62// required_nodes must also be present.
63//
64// See FindHyperedgeAndJoinConflicts() for details.
68};
69
70/**
71 RelationalExpression objects in the same companion set are those
72 that are inner-joined against each other; we use this to see in
73 what parts of the graph we allow cycles. (Within companion sets, we
74 are also allowed to add Cartesian products if we deem that an
75 advantage, but we don't do it currently.) Tables may be alone in
76 their companion sets. Companion sets are also used when calculating
77 selectivity for equijoin predicates using multi-field indexes,
78 @see EstimateEqualPredicateSelectivity()).
79*/
80class CompanionSet final {
81 public:
82 CompanionSet() = default;
83
84 explicit CompanionSet(THD *thd) : m_equal_terms(thd->mem_root) {}
85
86 /// No copying.
87 CompanionSet(const CompanionSet &) = delete;
89
90 /// Add the set of equal fields specified by 'func_eq'.
91 void AddEquijoinCondition(THD *thd, const Item_func_eq &eq);
92
93 /**
94 If 'field' is part of an equijoin predicate in this CompanionSet, return a
95 table_map of the tables involved in that predicate. Otherwise, return 0.
96 */
97 table_map GetEqualityMap(const Field &field) const;
98
99 /// For tracing and debugging.
100 /// @returns A string representation like "{{t1.f1, t2.f2}, {t2.f3, t3.f4}}".
101 std::string ToString() const;
102
103 private:
105
106 /**
107 This represents equality between a set of fields, i.e.
108 "t1.f1=t2.f2...=tN.fN".
109 */
110 struct EqualTerm {
111 /// The fields that are equal to each other.
113
114 /// A map of all tables in 'fields'.
116 };
117
118 /**
119 The set of sets of fields in equijoin predicates in this companion set.
120 (@see EstimateEqualPredicateSelectivity() to see how this is utilized.)
121 For example, if we have:
122
123 SELECT ... FROM t1, t2, t3 WHERE t1.x=t2.x AND t2.x=t3.x AND t2.y=t3.y
124
125 m_equal_terms will contain:
126
127 {{t1.x, t2.x, t3.x}, {t2.y, t3.y}}
128 */
130};
131
132/**
133 Represents an expression tree in the relational algebra of joins.
134 Expressions are either tables, or joins of two expressions.
135 (Joins can have join conditions, but more general filters are
136 not represented in this structure.)
137
138 These are used as an abstract precursor to the join hypergraph;
139 they represent the joins in the query block more or less directly,
140 without any reordering. (The parser should largely have output a
141 structure like this instead of Table_ref, but we are not there yet.)
142 The only real manipulation we do on them is pushing down conditions,
143 identifying equijoin conditions from other join conditions,
144 and identifying join conditions that touch given tables (also a form
145 of pushdown).
146 */
148 enum Type {
149 INNER_JOIN = static_cast<int>(JoinType::INNER),
150 LEFT_JOIN = static_cast<int>(JoinType::OUTER),
151
152 /// Left semijoin.
153 SEMIJOIN = static_cast<int>(JoinType::SEMI),
154
155 /// Left antijoin.
156 ANTIJOIN = static_cast<int>(JoinType::ANTI),
157
158 // STRAIGHT_JOIN is an inner join that the user has specified
159 // is noncommutative (as a hint, but one we are not allowed to
160 // disregard).
162
163 // Generally supported by the conflict detector only, not the parser
164 // or any iterators. We include this because we will be needing it
165 // when we actually implement full outer join, and because it helps
166 // verifying semijoin correctness in the unit tests (see the CountPlans*
167 // tests).
169
170 // An inner join between two _or more_ tables, with no join conditions.
171 // This is a special form used only during pushdown, for increased
172 // flexibility in reordering. MULTI_INNER_JOIN nodes do not use
173 // left and right, but rather store all its children in multi_children
174 // (which is empty for all other types).
176
177 TABLE = 100
179
181 : multi_children(thd->mem_root),
187
189
190 // Exactly the same as tables_in_subtree, just with node indexes instead of
191 // table indexes. This is stored alongside tables_in_subtree to save the cost
192 // and convenience of doing repeated translation between the two.
194
195 // If type == TABLE.
197
198 // The CompanionSet that this object is part of.
200
201 // If type != TABLE. Note that equijoin_conditions will be split off
202 // from join_conditions fairly late (at CreateHashJoinConditions()),
203 // so often, you will see equijoin conditions in join_condition..
206 multi_children; // See MULTI_INNER_JOIN.
209
210 // For each element in join_conditions and equijoin_conditions (respectively),
211 // contains some cached properties that the join optimizer would like to have
212 // available for frequent reuse.
213 //
214 // It is a bit awkward to have these separate instead of in the same arrays,
215 // but the latter would complicate MakeJoinHypergraph() a fair amount,
216 // as this information is private to the join optimizer (ie., it is not
217 // generated along with the hypergraph; it is added after MakeJoinHypergraph()
218 // is completed).
222
223 // If true, at least one condition under “join_conditions” is a false (0)
224 // constant. (Such conditions can never be under “equijoin_conditions”.)
227 // If the join conditions were also added as predicates due to cycles
228 // in the graph (see comment in AddCycleEdges()), contains a range of
229 // which indexes they got in the predicate list. This is so that we know that
230 // they are redundant and don't have to apply them if we actually apply this
231 // join (as opposed to getting the edge implicitly by means of joining the
232 // tables along some other way in the cycle).
234
235 // Conflict rules that must be checked before making a subgraph
236 // out of this join; this is in addition to the regular connectivity
237 // check. See FindHyperedgeAndJoinConflicts() for more details.
240
243 }
244
247 }
248
249 /// Add a condition that can be pushed down to the acces path for 'table'.
250 void AddPushable(Item *cond) {
251 assert(type == TABLE);
252 assert(table->map() && cond->used_tables() != 0);
253 // Don't add duplicates.
254 if (std::none_of(
256 [&](const Item *other) { return ItemsAreEqual(cond, other); })) {
257 m_pushable_conditions.push_back(cond);
258 }
259 }
260
261 private:
262 /// Conditions that can be pushed down to the acces path for 'table'
264};
265
266// Check conflict rules; usually, they will be empty, but the hyperedges are
267// not able to encode every single combination of disallowed joins.
268inline bool PassesConflictRules(hypergraph::NodeMap joined_tables,
269 const RelationalExpression *expr) {
270 for (const ConflictRule &rule : expr->conflict_rules) {
271 if (Overlaps(joined_tables, rule.needed_to_activate_rule) &&
272 !IsSubset(rule.required_nodes, joined_tables)) {
273 return false;
274 }
275 }
276 return true;
277}
278
279// Whether (a <expr> b) === (b <expr> a). See also OperatorsAreAssociative() and
280// OperatorsAre{Left,Right}Asscom() in make_join_hypergraph.cc.
282 return expr.type == RelationalExpression::INNER_JOIN ||
284}
285
286// Call the given functor on each non-table operator in the tree below expr,
287// including expr itself, in post-traversal order.
288template <class Func>
289 requires std::is_invocable_v<Func, RelationalExpression *>
291 if (expr->type == RelationalExpression::TABLE) {
292 return;
293 }
294 ForEachJoinOperator(expr->left, std::forward<Func &&>(func));
295 ForEachJoinOperator(expr->right, std::forward<Func &&>(func));
296 func(expr);
297}
298
299template <class Func>
300void ForEachOperator(RelationalExpression *expr, Func &&func) {
301 if (expr->type != RelationalExpression::TABLE) {
302 ForEachOperator(expr->left, std::forward<Func &&>(func));
303 ForEachOperator(expr->right, std::forward<Func &&>(func));
304 }
305 func(expr);
306}
307
308/// The collection of CompanionSet objects for a given JoinHypergraph.
310 public:
312 Compute(thd, root, nullptr);
313 }
314
315 /// No copying.
318
319 CompanionSet *Find(table_map tables) { return FindInternal(tables); }
320
321 const CompanionSet *Find(table_map tables) const {
322 return FindInternal(tables);
323 }
324
325 /// For trace and debugging.
326 std::string ToString() const;
327
328 private:
329 /// A mapping from table number to CompanionSet.
330 std::array<CompanionSet *, MAX_TABLES> m_table_num_to_companion_set{nullptr};
331
332 /**
333 Compute the CompanionSet of 'expr' and all of its descendants.
334 @param thd The current thread.
335 @param expr Compute CompanionSet of this and all of its descendants.
336 @param current_set The CompanionSet to which 'expr' will belong, or
337 nullptr if 'expr' is the root of a new set.
338 */
339 void Compute(THD *thd, RelationalExpression *expr, CompanionSet *current_set);
340
341 /**
342 For a given set of tables, find the CompanionSet they are part of
343 Returns nullptr if the tables are in different (i.e., incompatible)
344 CompanionSet instances. If so, a condition using this set of
345 tables can _not_ induce a new (cycle) edge in the hypergraph, as
346 there are non-inner joins in the way.
347 */
348 CompanionSet *FindInternal(table_map tables) const;
349};
350
351#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:309
CompanionSet * Find(table_map tables)
Definition: relational_expression.h:319
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:330
CompanionSetCollection & operator=(const CompanionSetCollection &)=delete
CompanionSetCollection(THD *thd, struct RelationalExpression *root)
Definition: relational_expression.h:311
std::string ToString() const
For trace and debugging.
Definition: relational_expression.cc:181
const CompanionSet * Find(table_map tables) const
Definition: relational_expression.h:321
RelationalExpression objects in the same companion set are those that are inner-joined against each o...
Definition: relational_expression.h:80
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:129
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:84
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:2364
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:2900
table_map map() const
Return table map derived from table number.
Definition: table.h:4036
NESTED_JOIN * nested_join
Is non-NULL if this table reference is a nested join, ie it represents the inner tables of an outer j...
Definition: table.h:3914
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 ForEachJoinOperator(RelationalExpression *expr, Func &&func)
Definition: relational_expression.h:290
void ForEachOperator(RelationalExpression *expr, Func &&func)
Definition: relational_expression.h:300
bool PassesConflictRules(hypergraph::NodeMap joined_tables, const RelationalExpression *expr)
Definition: relational_expression.h:268
bool OperatorIsCommutative(const RelationalExpression &expr)
Definition: relational_expression.h:281
Access paths are a query planning structure that correspond 1:1 to iterators, in that an access path ...
Definition: access_path.h:227
Definition: relational_expression.h:47
double selectivity
Definition: relational_expression.h:49
Mem_root_array< ContainedSubquery > contained_subqueries
Definition: relational_expression.h:48
OverflowBitset redundant_against_sargable_predicates
Definition: relational_expression.h:57
This represents equality between a set of fields, i.e.
Definition: relational_expression.h:110
FieldArray * fields
The fields that are equal to each other.
Definition: relational_expression.h:112
table_map tables
A map of all tables in 'fields'.
Definition: relational_expression.h:115
Definition: relational_expression.h:65
hypergraph::NodeMap required_nodes
Definition: relational_expression.h:67
hypergraph::NodeMap needed_to_activate_rule
Definition: relational_expression.h:66
uint sj_enabled_strategies
Bitmap of which strategies are enabled for this semi-join nest.
Definition: nested_join.h:136
Represents an expression tree in the relational algebra of joins.
Definition: relational_expression.h:147
int join_predicate_last
Definition: relational_expression.h:233
Mem_root_array< CachedPropertiesForPredicate > properties_for_equijoin_conditions
Definition: relational_expression.h:221
const Mem_root_array< Item * > & pushable_conditions() const
Definition: relational_expression.h:245
Mem_root_array< Item_eq_base * > equijoin_conditions
Definition: relational_expression.h:208
int join_predicate_first
Definition: relational_expression.h:233
Mem_root_array< ConflictRule > conflict_rules
Definition: relational_expression.h:238
void enable_semijoin_strategies(const Table_ref *tl)
Definition: relational_expression.h:241
enum RelationalExpression::Type type
CompanionSet * companion_set
Definition: relational_expression.h:199
RelationalExpression(THD *thd)
Definition: relational_expression.h:180
void AddPushable(Item *cond)
Add a condition that can be pushed down to the acces path for 'table'.
Definition: relational_expression.h:250
table_map tables_in_subtree
Definition: relational_expression.h:188
const Table_ref * table
Definition: relational_expression.h:196
hypergraph::NodeMap nodes_in_subtree
Definition: relational_expression.h:193
Mem_root_array< RelationalExpression * > multi_children
Definition: relational_expression.h:206
uint sj_enabled_strategies
Definition: relational_expression.h:239
table_map conditions_used_tables
Definition: relational_expression.h:226
Mem_root_array< Item * > join_conditions
Definition: relational_expression.h:207
Type
Definition: relational_expression.h:148
@ SEMIJOIN
Left semijoin.
Definition: relational_expression.h:153
@ MULTI_INNER_JOIN
Definition: relational_expression.h:175
@ STRAIGHT_INNER_JOIN
Definition: relational_expression.h:161
@ ANTIJOIN
Left antijoin.
Definition: relational_expression.h:156
@ INNER_JOIN
Definition: relational_expression.h:149
@ FULL_OUTER_JOIN
Definition: relational_expression.h:168
@ TABLE
Definition: relational_expression.h:177
@ LEFT_JOIN
Definition: relational_expression.h:150
Mem_root_array< Item * > m_pushable_conditions
Conditions that can be pushed down to the acces path for 'table'.
Definition: relational_expression.h:263
bool join_conditions_reject_all_rows
Definition: relational_expression.h:225
Mem_root_array< CachedPropertiesForPredicate > properties_for_join_conditions
Definition: relational_expression.h:219
RelationalExpression * left
Definition: relational_expression.h:204
RelationalExpression * right
Definition: relational_expression.h:204
Definition: table.h:1421