24#ifndef SQL_JOIN_OPTIMIZER_MAKE_JOIN_HYPERGRAPH
25#define SQL_JOIN_OPTIMIZER_MAKE_JOIN_HYPERGRAPH 1
33#include <unordered_map>
119 assert(
table !=
nullptr);
127 assert(predicate.
field !=
nullptr);
142 [&](
const Item *other) { return ItemsAreEqual(cond, other); })) {
261 bool *where_is_always_false);
269 const std::array<int, MAX_TABLES> &table_num_to_node_num);
RelationalExpression objects in the same companion set are those that are inner-joined against each o...
Definition: relational_expression.h:80
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:930
Definition: sql_optimizer.h:133
Definition: make_join_hypergraph.h:111
void AddSargable(const SargablePredicate &predicate)
Definition: make_join_hypergraph.h:125
const Mem_root_array< SargablePredicate > & sargable_predicates() const
Definition: make_join_hypergraph.h:132
TABLE * m_table
Definition: make_join_hypergraph.h:160
Mem_root_array< SargablePredicate > m_sargable_predicates
Definition: make_join_hypergraph.h:166
Mem_root_array< Item * > m_pushable_conditions
Definition: make_join_hypergraph.h:178
hypergraph::NodeMap lateral_dependencies() const
Definition: make_join_hypergraph.h:151
const Mem_root_array< Item * > & pushable_conditions() const
Definition: make_join_hypergraph.h:147
hypergraph::NodeMap m_lateral_dependencies
Definition: make_join_hypergraph.h:184
Node(MEM_ROOT *mem_root, TABLE *table, const CompanionSet *companion_set)
Definition: make_join_hypergraph.h:113
const CompanionSet * m_companion_set
Definition: make_join_hypergraph.h:161
const CompanionSet * companion_set() const
Definition: make_join_hypergraph.h:123
void AddPushable(Item *cond)
Definition: make_join_hypergraph.h:136
TABLE * table() const
Definition: make_join_hypergraph.h:122
void set_lateral_dependencies(hypergraph::NodeMap dependencies)
Definition: make_join_hypergraph.h:155
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Definition: overflow_bitset.h:78
This class represents a query block, aka a query specification, which is a query consisting of a SELE...
Definition: sql_lex.h:1159
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
std::unordered_map, but allocated on a MEM_ROOT.
Definition: map_helpers.h:291
static MEM_ROOT mem_root
Definition: client_plugin.cc:114
Definition of an undirected (join) hypergraph.
bool MakeJoinHypergraph(THD *thd, JoinHypergraph *graph, bool *where_is_always_false)
Make a join hypergraph from the query block given by “graph->query_block”, converting from MySQL's jo...
Definition: make_join_hypergraph.cc:3611
hypergraph::NodeMap GetNodeMapFromTableMap(table_map table_map, const std::array< int, MAX_TABLES > &table_num_to_node_num)
std::string PrintDottyHypergraph(const JoinHypergraph &graph)
For the given hypergraph, make a textual representation in the form of a dotty graph.
Definition: make_join_hypergraph.cc:2545
void MakeJoinGraphFromRelationalExpression(THD *thd, RelationalExpression *expr, JoinHypergraph *graph)
Convert a join rooted at “expr” into a join hypergraph that encapsulates the constraints given by the...
Definition: make_join_hypergraph.cc:3248
table_map GetVisibleTables(const RelationalExpression *expr)
Definition: make_join_hypergraph.cc:3883
size_t EstimateHashJoinKeyWidth(const RelationalExpression *expr)
Estimates the size of the hash join keys generated from the equi-join predicates in "expr".
Definition: make_join_hypergraph.cc:2644
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...
For updating an AccessPath's costs by a secondary engine, i.e.
uint64_t SecondaryEngineCostingFlags
Definition: secondary_engine_costing_flags.h:39
File containing constants that can be used throughout the server.
A struct containing a join hypergraph of a single query block, encapsulating the constraints given by...
Definition: make_join_hypergraph.h:88
unsigned num_where_predicates
Definition: make_join_hypergraph.h:199
Mem_root_array< Node > nodes
Definition: make_join_hypergraph.h:186
table_map tables_inner_to_outer_or_anti
The set of tables that are on the inner side of some outer join or antijoin.
Definition: make_join_hypergraph.h:227
bool has_reordered_left_joins
Whether, at any point, we could rewrite (t1 LEFT JOIN t2) LEFT JOIN t3 to t1 LEFT JOIN (t2 LEFT JOIN ...
Definition: make_join_hypergraph.h:222
void AddSargableJoinPredicate(const Item *predicate, int position)
Definition: make_join_hypergraph.h:234
hypergraph::Hypergraph graph
Definition: make_join_hypergraph.h:97
const Query_block * query_block() const
Returns a pointer to the query block that is being planned.
Definition: make_join_hypergraph.h:206
JoinHypergraph(MEM_ROOT *mem_root, const Query_block *query_block)
Definition: make_join_hypergraph.h:89
const JOIN * join() const
Returns a pointer to the JOIN object of the query block being planned.
Definition: make_join_hypergraph.cc:3609
const Query_block * m_query_block
A pointer to the query block being planned.
Definition: make_join_hypergraph.h:246
Mem_root_array< Predicate > predicates
Definition: make_join_hypergraph.h:197
int FindSargableJoinPredicate(const Item *predicate) const
Definition: make_join_hypergraph.h:229
OverflowBitset materializable_predicates
Definition: make_join_hypergraph.h:203
SecondaryEngineCostingFlags secondary_engine_costing_flags
Flags set when AccessPaths are proposed to secondary engines for costing.
Definition: make_join_hypergraph.h:104
mem_root_unordered_map< const Item *, int > m_sargable_join_predicates
Definition: make_join_hypergraph.h:243
std::array< int, MAX_TABLES > table_num_to_node_num
Definition: make_join_hypergraph.h:109
Mem_root_array< JoinPredicate > edges
Definition: make_join_hypergraph.h:190
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Represents an expression tree in the relational algebra of joins.
Definition: relational_expression.h:147
A sargable (from “Search ARGument”) predicate is one that we can attempt to push down into an index (...
Definition: make_join_hypergraph.h:62
int predicate_index
Definition: make_join_hypergraph.h:64
Field * field
Definition: make_join_hypergraph.h:69
Item * other_side
Definition: make_join_hypergraph.h:70
bool can_evaluate
True if it is safe to evaluate "other_side" during optimization.
Definition: make_join_hypergraph.h:75
Definition: hypergraph.h:90