OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RelAlgExecutionUnit.h File Reference

Execution unit for relational algebra. It's a low-level description of any relational algebra operation in a format understood by our VM. More...

#include "Descriptors/InputDescriptors.h"
#include "QueryHint.h"
#include "RelAlgDag.h"
#include "Shared/DbObjectKeys.h"
#include "Shared/sqldefs.h"
#include "Shared/toString.h"
#include "TableFunctions/TableFunctionOutputBufferSizeType.h"
#include "TableFunctions/TableFunctionsFactory.h"
#include "ThriftHandler/QueryState.h"
#include <boost/graph/adjacency_list.hpp>
#include <list>
#include <memory>
#include <optional>
#include <vector>
+ Include dependency graph for RelAlgExecutionUnit.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  HashTableBuildDag
 
struct  SortInfo
 
struct  JoinCondition
 
struct  RelAlgExecutionUnit
 
struct  TableFunctionExecutionUnit
 

Namespaces

 Analyzer
 

Typedefs

using AdjacentList = boost::adjacency_list< boost::setS, boost::vecS, boost::directedS >
 
using RelNodeId = size_t
 
using RelNodeExplainedHash = size_t
 
using QueryPlanDAG = std::string
 
using QueryPlanHash = size_t
 
using HashTableBuildDagMap = std::unordered_map< size_t, HashTableBuildDag >
 
using TableIdToNodeMap = std::unordered_map< shared::TableKey, const RelAlgNode * >
 
using JoinQualsPerNestingLevel = std::vector< JoinCondition >
 
using ResultSetPtr = std::shared_ptr< ResultSet >
 

Enumerations

enum  JoinColumnSide { kInner, kOuter, kQual, kDirect }
 
enum  SortAlgorithm { SortAlgorithm::Default, SortAlgorithm::SpeculativeTopN, SortAlgorithm::StreamingTopN }
 

Functions

std::ostream & operator<< (std::ostream &os, const RelAlgExecutionUnit &ra_exe_unit)
 
std::string ra_exec_unit_desc_for_caching (const RelAlgExecutionUnit &ra_exe_unit)
 

Variables

constexpr char const * EMPTY_QUERY_PLAN = ""
 
constexpr QueryPlanHash EMPTY_HASHED_PLAN_DAG_KEY = 0
 

Detailed Description

Execution unit for relational algebra. It's a low-level description of any relational algebra operation in a format understood by our VM.

Definition in file RelAlgExecutionUnit.h.

Typedef Documentation

using AdjacentList = boost::adjacency_list<boost::setS, boost::vecS, boost::directedS>

Definition at line 43 of file RelAlgExecutionUnit.h.

using HashTableBuildDagMap = std::unordered_map<size_t, HashTableBuildDag>

Definition at line 86 of file RelAlgExecutionUnit.h.

Definition at line 129 of file RelAlgExecutionUnit.h.

using QueryPlanDAG = std::string

Definition at line 56 of file RelAlgExecutionUnit.h.

using QueryPlanHash = size_t

Definition at line 58 of file RelAlgExecutionUnit.h.

using RelNodeExplainedHash = size_t

Definition at line 51 of file RelAlgExecutionUnit.h.

using RelNodeId = size_t

Definition at line 49 of file RelAlgExecutionUnit.h.

using ResultSetPtr = std::shared_ptr<ResultSet>

Definition at line 183 of file RelAlgExecutionUnit.h.

using TableIdToNodeMap = std::unordered_map<shared::TableKey, const RelAlgNode*>

Definition at line 94 of file RelAlgExecutionUnit.h.

Enumeration Type Documentation

Enumerator
kInner 
kOuter 
kQual 
kDirect 

Definition at line 96 of file RelAlgExecutionUnit.h.

96  {
97  kInner,
98  kOuter,
99  kQual, // INNER + OUTER
100  kDirect // set target directly (i.e., put Analyzer::Expr* instead of
101  // Analyzer::BinOper*)
102 };
enum SortAlgorithm
strong
Enumerator
Default 
SpeculativeTopN 
StreamingTopN 

Definition at line 106 of file RelAlgExecutionUnit.h.

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const RelAlgExecutionUnit ra_exe_unit 
)

Definition at line 1667 of file Execute.cpp.

References RelAlgExecutionUnit::estimator, anonymous_namespace{Execute.cpp}::expr_container_to_string(), RelAlgExecutionUnit::groupby_exprs, RelAlgExecutionUnit::input_col_descs, join(), RelAlgExecutionUnit::join_quals, RelAlgExecutionUnit::quals, RelAlgExecutionUnit::query_plan_dag_hash, RelAlgExecutionUnit::scan_limit, RelAlgExecutionUnit::simple_quals, anonymous_namespace{Execute.cpp}::sort_algorithm_to_string(), RelAlgExecutionUnit::sort_info, RelAlgExecutionUnit::target_exprs, to_string(), toString(), RelAlgExecutionUnit::union_all, and RelAlgExecutionUnit::use_bump_allocator.

1667  {
1668  os << "\n\tExtracted Query Plan Dag Hash: " << ra_exe_unit.query_plan_dag_hash;
1669  os << "\n\tTable/Col/Levels: ";
1670  for (const auto& input_col_desc : ra_exe_unit.input_col_descs) {
1671  const auto& scan_desc = input_col_desc->getScanDesc();
1672  os << "(" << scan_desc.getTableKey() << ", " << input_col_desc->getColId() << ", "
1673  << scan_desc.getNestLevel() << ") ";
1674  }
1675  if (!ra_exe_unit.simple_quals.empty()) {
1676  os << "\n\tSimple Quals: "
1678  ", ");
1679  }
1680  if (!ra_exe_unit.quals.empty()) {
1681  os << "\n\tQuals: "
1682  << boost::algorithm::join(expr_container_to_string(ra_exe_unit.quals), ", ");
1683  }
1684  if (!ra_exe_unit.join_quals.empty()) {
1685  os << "\n\tJoin Quals: ";
1686  for (size_t i = 0; i < ra_exe_unit.join_quals.size(); i++) {
1687  const auto& join_condition = ra_exe_unit.join_quals[i];
1688  os << "\t\t" << std::to_string(i) << " " << ::toString(join_condition.type);
1689  os << boost::algorithm::join(expr_container_to_string(join_condition.quals), ", ");
1690  }
1691  }
1692  if (!ra_exe_unit.groupby_exprs.empty()) {
1693  os << "\n\tGroup By: "
1695  ", ");
1696  }
1697  os << "\n\tProjected targets: "
1699  os << "\n\tHas Estimator: " << ::toString(ra_exe_unit.estimator == nullptr);
1700  os << "\n\tSort Info: ";
1701  const auto& sort_info = ra_exe_unit.sort_info;
1702  os << "\n\t Order Entries: "
1703  << boost::algorithm::join(expr_container_to_string(sort_info.order_entries), ", ");
1704  os << "\n\t Algorithm: " << sort_algorithm_to_string(sort_info.algorithm);
1705  os << "\n\t Limit: " << std::to_string(sort_info.limit);
1706  os << "\n\t Offset: " << std::to_string(sort_info.offset);
1707  os << "\n\tScan Limit: " << std::to_string(ra_exe_unit.scan_limit);
1708  os << "\n\tBump Allocator: " << ::toString(ra_exe_unit.use_bump_allocator);
1709  if (ra_exe_unit.union_all) {
1710  os << "\n\tUnion: " << std::string(*ra_exe_unit.union_all ? "UNION ALL" : "UNION");
1711  }
1712  return os;
1713 }
std::vector< Analyzer::Expr * > target_exprs
QueryPlanHash query_plan_dag_hash
const std::optional< bool > union_all
std::string join(T const &container, std::string const &delim)
const std::list< std::shared_ptr< Analyzer::Expr > > groupby_exprs
std::string to_string(char const *&&v)
const JoinQualsPerNestingLevel join_quals
std::vector< std::string > expr_container_to_string(const T &expr_container)
Definition: Execute.cpp:1579
std::string toString(const ExecutorDeviceType &device_type)
const std::shared_ptr< Analyzer::Estimator > estimator
std::string sort_algorithm_to_string(const SortAlgorithm algorithm)
Definition: Execute.cpp:1601
std::list< std::shared_ptr< Analyzer::Expr > > quals
std::list< std::shared_ptr< const InputColDescriptor > > input_col_descs
std::list< std::shared_ptr< Analyzer::Expr > > simple_quals

+ Here is the call graph for this function:

std::string ra_exec_unit_desc_for_caching ( const RelAlgExecutionUnit ra_exe_unit)

Definition at line 1616 of file Execute.cpp.

References RelAlgExecutionUnit::estimator, RelAlgExecutionUnit::groupby_exprs, RelAlgExecutionUnit::input_col_descs, RelAlgExecutionUnit::join_quals, RelAlgExecutionUnit::quals, RelAlgExecutionUnit::scan_limit, RelAlgExecutionUnit::simple_quals, RelAlgExecutionUnit::target_exprs, to_string(), and toString().

Referenced by RelAlgExecutor::executeWorkUnit().

1616  {
1617  // todo(yoonmin): replace a cache key as a DAG representation of a query plan
1618  // instead of ra_exec_unit description if possible
1619  std::ostringstream os;
1620  for (const auto& input_col_desc : ra_exe_unit.input_col_descs) {
1621  const auto& scan_desc = input_col_desc->getScanDesc();
1622  os << scan_desc.getTableKey() << "," << input_col_desc->getColId() << ","
1623  << scan_desc.getNestLevel();
1624  }
1625  if (!ra_exe_unit.simple_quals.empty()) {
1626  for (const auto& qual : ra_exe_unit.simple_quals) {
1627  if (qual) {
1628  os << qual->toString() << ",";
1629  }
1630  }
1631  }
1632  if (!ra_exe_unit.quals.empty()) {
1633  for (const auto& qual : ra_exe_unit.quals) {
1634  if (qual) {
1635  os << qual->toString() << ",";
1636  }
1637  }
1638  }
1639  if (!ra_exe_unit.join_quals.empty()) {
1640  for (size_t i = 0; i < ra_exe_unit.join_quals.size(); i++) {
1641  const auto& join_condition = ra_exe_unit.join_quals[i];
1642  os << std::to_string(i) << ::toString(join_condition.type);
1643  for (const auto& qual : join_condition.quals) {
1644  if (qual) {
1645  os << qual->toString() << ",";
1646  }
1647  }
1648  }
1649  }
1650  if (!ra_exe_unit.groupby_exprs.empty()) {
1651  for (const auto& qual : ra_exe_unit.groupby_exprs) {
1652  if (qual) {
1653  os << qual->toString() << ",";
1654  }
1655  }
1656  }
1657  for (const auto& expr : ra_exe_unit.target_exprs) {
1658  if (expr) {
1659  os << expr->toString() << ",";
1660  }
1661  }
1662  os << ::toString(ra_exe_unit.estimator == nullptr);
1663  os << std::to_string(ra_exe_unit.scan_limit);
1664  return os.str();
1665 }
std::vector< Analyzer::Expr * > target_exprs
const std::list< std::shared_ptr< Analyzer::Expr > > groupby_exprs
std::string to_string(char const *&&v)
const JoinQualsPerNestingLevel join_quals
std::string toString(const ExecutorDeviceType &device_type)
const std::shared_ptr< Analyzer::Estimator > estimator
std::list< std::shared_ptr< Analyzer::Expr > > quals
std::list< std::shared_ptr< const InputColDescriptor > > input_col_descs
std::list< std::shared_ptr< Analyzer::Expr > > simple_quals

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

constexpr char const* EMPTY_QUERY_PLAN = ""