MySQL 8.0.37
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"
33#include "sql/join_type.h"
34#include "sql/mem_root_array.h"
35#include "sql/sql_class.h"
36
37struct AccessPath;
38class Item_eq_base;
39
40// Some information about each predicate that the join optimizer would like to
41// have available in order to avoid computing it anew for each use of that
42// predicate.
46
47 // For equijoins only: A bitmap of which sargable predicates
48 // are part of the same multi-equality as this one (except the
49 // condition itself, which is excluded), and thus are redundant
50 // against it. This is used in AlreadyAppliedThroughSargable()
51 // to quickly find out if we already have applied any of them
52 // as a join condition.
54};
55
56// Describes a rule disallowing specific joins; if any tables from
57// needed_to_activate_rule is part of the join, then _all_ tables from
58// required_nodes must also be present.
59//
60// See FindHyperedgeAndJoinConflicts() for details.
64};
65
66/**
67 Represents an expression tree in the relational algebra of joins.
68 Expressions are either tables, or joins of two expressions.
69 (Joins can have join conditions, but more general filters are
70 not represented in this structure.)
71
72 These are used as an abstract precursor to the join hypergraph;
73 they represent the joins in the query block more or less directly,
74 without any reordering. (The parser should largely have output a
75 structure like this instead of Table_ref, but we are not there yet.)
76 The only real manipulation we do on them is pushing down conditions,
77 identifying equijoin conditions from other join conditions,
78 and identifying join conditions that touch given tables (also a form
79 of pushdown).
80 */
88
89 enum Type {
90 INNER_JOIN = static_cast<int>(JoinType::INNER),
91 LEFT_JOIN = static_cast<int>(JoinType::OUTER),
92 SEMIJOIN = static_cast<int>(JoinType::SEMI),
93 ANTIJOIN = static_cast<int>(JoinType::ANTI),
94
95 // STRAIGHT_JOIN is an inner join that the user has specified
96 // is noncommutative (as a hint, but one we are not allowed to
97 // disregard).
99
100 // Generally supported by the conflict detector only, not the parser
101 // or any iterators. We include this because we will be needing it
102 // when we actually implement full outer join, and because it helps
103 // verifying semijoin correctness in the unit tests (see the CountPlans*
104 // tests).
106
107 // An inner join between two _or more_ tables, with no join conditions.
108 // This is a special form used only during pushdown, for increased
109 // flexibility in reordering. MULTI_INNER_JOIN nodes do not use
110 // left and right, but rather store all its children in multi_children
111 // (which is empty for all other types).
113
114 TABLE = 100
117
118 // Exactly the same as tables_in_subtree, just with node indexes instead of
119 // table indexes. This is stored alongside tables_in_subtree to save the cost
120 // and convenience of doing repeated translation between the two.
122
123 // If type == TABLE.
126 // Tables in the same companion set are those that are inner-joined
127 // against each other; we use this to see in what parts of the graph
128 // we allow cycles. (Within companion sets, we are also allowed to
129 // add Cartesian products if we deem that an advantage, but we don't
130 // do it currently.) -1 means that the table is not part of a companion
131 // set, e.g. because it only participates in outer joins. Tables may
132 // also be alone in their companion sets, which essentially means
133 // the same thing as -1. The companion sets are just opaque identifiers;
134 // the number itself doesn't mean much.
136
137 // If type != TABLE. Note that equijoin_conditions will be split off
138 // from join_conditions fairly late (at CreateHashJoinConditions()),
139 // so often, you will see equijoin conditions in join_condition..
142 multi_children; // See MULTI_INNER_JOIN.
145
146 // For each element in join_conditions and equijoin_conditions (respectively),
147 // contains some cached properties that the join optimizer would like to have
148 // available for frequent reuse.
149 //
150 // It is a bit awkward to have these separate instead of in the same arrays,
151 // but the latter would complicate MakeJoinHypergraph() a fair amount,
152 // as this information is private to the join optimizer (ie., it is not
153 // generated along with the hypergraph; it is added after MakeJoinHypergraph()
154 // is completed).
158
159 // If true, at least one condition under “join_conditions” is a false (0)
160 // constant. (Such conditions can never be under “equijoin_conditions”.)
163 // If the join conditions were also added as predicates due to cycles
164 // in the graph (see comment in AddCycleEdges()), contains a range of
165 // which indexes they got in the predicate list. This is so that we know that
166 // they are redundant and don't have to apply them if we actually apply this
167 // join (as opposed to getting the edge implicitly by means of joining the
168 // tables along some other way in the cycle).
170
171 // Conflict rules that must be checked before making a subgraph
172 // out of this join; this is in addition to the regular connectivity
173 // check. See FindHyperedgeAndJoinConflicts() for more details.
175};
176
177// Check conflict rules; usually, they will be empty, but the hyperedges are
178// not able to encode every single combination of disallowed joins.
179inline bool PassesConflictRules(hypergraph::NodeMap joined_tables,
180 const RelationalExpression *expr) {
181 for (const ConflictRule &rule : expr->conflict_rules) {
182 if (Overlaps(joined_tables, rule.needed_to_activate_rule) &&
183 !IsSubset(rule.required_nodes, joined_tables)) {
184 return false;
185 }
186 }
187 return true;
188}
189
190// Whether (a <expr> b) === (b <expr> a). See also OperatorsAreAssociative() and
191// OperatorsAre{Left,Right}Asscom() in make_join_hypergraph.cc.
193 return expr.type == RelationalExpression::INNER_JOIN ||
195}
196
197// Call the given functor on each non-table operator in the tree below expr,
198// including expr itself, in post-traversal order.
199template <class Func>
201 if (expr->type == RelationalExpression::TABLE) {
202 return;
203 }
204 ForEachJoinOperator(expr->left, std::forward<Func &&>(func));
205 ForEachJoinOperator(expr->right, std::forward<Func &&>(func));
206 func(expr);
207}
208
209template <class Func>
210void ForEachOperator(RelationalExpression *expr, Func &&func) {
211 if (expr->type != RelationalExpression::TABLE) {
212 ForEachOperator(expr->left, std::forward<Func &&>(func));
213 ForEachOperator(expr->right, std::forward<Func &&>(func));
214 }
215 func(expr);
216}
217
218#endif // SQL_JOIN_OPTIMIZER_RELATIONAL_EXPRESSION_H
bool IsSubset(uint64_t x, uint64_t y)
Definition: bit_utils.h:229
bool Overlaps(uint64_t x, uint64_t y)
Definition: bit_utils.h:237
Base class for the equality comparison operators = and <=>.
Definition: item_cmpfunc.h:983
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Definition: overflow_bitset.h:77
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:34
Definition: table.h:2790
static MEM_ROOT mem_root
Definition: client_plugin.cc:110
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:210
void ForEachJoinOperator(RelationalExpression *expr, Func &&func)
Definition: relational_expression.h:200
bool PassesConflictRules(hypergraph::NodeMap joined_tables, const RelationalExpression *expr)
Definition: relational_expression.h:179
bool OperatorIsCommutative(const RelationalExpression &expr)
Definition: relational_expression.h:192
Access paths are a query planning structure that correspond 1:1 to iterators, in that an access path ...
Definition: access_path.h:193
Definition: relational_expression.h:43
double selectivity
Definition: relational_expression.h:45
Mem_root_array< ContainedSubquery > contained_subqueries
Definition: relational_expression.h:44
OverflowBitset redundant_against_sargable_predicates
Definition: relational_expression.h:53
Definition: relational_expression.h:61
hypergraph::NodeMap required_nodes
Definition: relational_expression.h:63
hypergraph::NodeMap needed_to_activate_rule
Definition: relational_expression.h:62
Represents an expression tree in the relational algebra of joins.
Definition: relational_expression.h:81
int join_predicate_last
Definition: relational_expression.h:169
Mem_root_array< CachedPropertiesForPredicate > properties_for_equijoin_conditions
Definition: relational_expression.h:157
Mem_root_array< Item_eq_base * > equijoin_conditions
Definition: relational_expression.h:144
int join_predicate_first
Definition: relational_expression.h:169
Mem_root_array< ConflictRule > conflict_rules
Definition: relational_expression.h:174
enum RelationalExpression::Type type
RelationalExpression(THD *thd)
Definition: relational_expression.h:82
table_map tables_in_subtree
Definition: relational_expression.h:116
const Table_ref * table
Definition: relational_expression.h:124
hypergraph::NodeMap nodes_in_subtree
Definition: relational_expression.h:121
Mem_root_array< RelationalExpression * > multi_children
Definition: relational_expression.h:142
Mem_root_array< Item * > join_conditions_pushable_to_this
Definition: relational_expression.h:125
table_map conditions_used_tables
Definition: relational_expression.h:162
Mem_root_array< Item * > join_conditions
Definition: relational_expression.h:143
Type
Definition: relational_expression.h:89
@ SEMIJOIN
Definition: relational_expression.h:92
@ MULTI_INNER_JOIN
Definition: relational_expression.h:112
@ STRAIGHT_INNER_JOIN
Definition: relational_expression.h:98
@ ANTIJOIN
Definition: relational_expression.h:93
@ INNER_JOIN
Definition: relational_expression.h:90
@ FULL_OUTER_JOIN
Definition: relational_expression.h:105
@ TABLE
Definition: relational_expression.h:114
@ LEFT_JOIN
Definition: relational_expression.h:91
bool join_conditions_reject_all_rows
Definition: relational_expression.h:161
Mem_root_array< CachedPropertiesForPredicate > properties_for_join_conditions
Definition: relational_expression.h:155
RelationalExpression * left
Definition: relational_expression.h:140
RelationalExpression * right
Definition: relational_expression.h:140
int companion_set
Definition: relational_expression.h:135
Definition: table.h:1398