OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RelAlgTranslator.h File Reference
#include "Execute.h"
#include "RelAlgDag.h"
#include "ThirdParty/robin_hood/robin_hood.h"
#include <ctime>
#include <memory>
#include <unordered_map>
#include <vector>
+ Include dependency graph for RelAlgTranslator.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  RelAlgTranslator
 
struct  QualsConjunctiveForm
 

Namespaces

 Analyzer
 
 Catalog_Namespace
 
 query_state
 

Functions

QualsConjunctiveForm qual_to_conjunctive_form (const std::shared_ptr< Analyzer::Expr > qual_expr)
 
std::vector< std::shared_ptr
< Analyzer::Expr > > 
qual_to_disjunctive_form (const std::shared_ptr< Analyzer::Expr > &qual_expr)
 

Variables

auto func_resolve
 

Function Documentation

QualsConjunctiveForm qual_to_conjunctive_form ( const std::shared_ptr< Analyzer::Expr qual_expr)

Definition at line 2637 of file RelAlgTranslator.cpp.

References CHECK, kAND, qual_to_conjunctive_form(), rewrite_expr(), and QualsConjunctiveForm::simple_quals.

Referenced by anonymous_namespace{IRCodegen.cpp}::add_qualifier_to_execution_unit(), RelAlgExecutor::makeJoinQuals(), qual_to_conjunctive_form(), anonymous_namespace{RelAlgExecutor.cpp}::reverse_logical_distribution(), Executor::skipFragmentInnerJoins(), and anonymous_namespace{RelAlgExecutor.cpp}::translate_quals().

2638  {
2639  CHECK(qual_expr);
2640  auto bin_oper = std::dynamic_pointer_cast<const Analyzer::BinOper>(qual_expr);
2641  if (!bin_oper) {
2642  const auto rewritten_qual_expr = rewrite_expr(qual_expr.get());
2643  return {{}, {rewritten_qual_expr ? rewritten_qual_expr : qual_expr}};
2644  }
2645 
2646  if (bin_oper->get_optype() == kAND) {
2647  const auto lhs_cf = qual_to_conjunctive_form(bin_oper->get_own_left_operand());
2648  const auto rhs_cf = qual_to_conjunctive_form(bin_oper->get_own_right_operand());
2649  auto simple_quals = lhs_cf.simple_quals;
2650  simple_quals.insert(
2651  simple_quals.end(), rhs_cf.simple_quals.begin(), rhs_cf.simple_quals.end());
2652  auto quals = lhs_cf.quals;
2653  quals.insert(quals.end(), rhs_cf.quals.begin(), rhs_cf.quals.end());
2654  return {simple_quals, quals};
2655  }
2656  int rte_idx{0};
2657  const auto simple_qual = bin_oper->normalize_simple_predicate(rte_idx);
2658  return simple_qual ? QualsConjunctiveForm{{simple_qual}, {}}
2659  : QualsConjunctiveForm{{}, {qual_expr}};
2660 }
Analyzer::ExpressionPtr rewrite_expr(const Analyzer::Expr *expr)
QualsConjunctiveForm qual_to_conjunctive_form(const std::shared_ptr< Analyzer::Expr > qual_expr)
Definition: sqldefs.h:36
#define CHECK(condition)
Definition: Logger.h:291
const 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:

std::vector<std::shared_ptr<Analyzer::Expr> > qual_to_disjunctive_form ( const std::shared_ptr< Analyzer::Expr > &  qual_expr)

Definition at line 2662 of file RelAlgTranslator.cpp.

References CHECK, kOR, qual_to_disjunctive_form(), and rewrite_expr().

Referenced by qual_to_disjunctive_form(), and anonymous_namespace{RelAlgExecutor.cpp}::reverse_logical_distribution().

2663  {
2664  CHECK(qual_expr);
2665  const auto bin_oper = std::dynamic_pointer_cast<const Analyzer::BinOper>(qual_expr);
2666  if (!bin_oper) {
2667  const auto rewritten_qual_expr = rewrite_expr(qual_expr.get());
2668  return {rewritten_qual_expr ? rewritten_qual_expr : qual_expr};
2669  }
2670  if (bin_oper->get_optype() == kOR) {
2671  const auto lhs_df = qual_to_disjunctive_form(bin_oper->get_own_left_operand());
2672  const auto rhs_df = qual_to_disjunctive_form(bin_oper->get_own_right_operand());
2673  auto quals = lhs_df;
2674  quals.insert(quals.end(), rhs_df.begin(), rhs_df.end());
2675  return quals;
2676  }
2677  return {qual_expr};
2678 }
Definition: sqldefs.h:37
Analyzer::ExpressionPtr rewrite_expr(const Analyzer::Expr *expr)
#define CHECK(condition)
Definition: Logger.h:291
std::vector< std::shared_ptr< Analyzer::Expr > > qual_to_disjunctive_form(const std::shared_ptr< Analyzer::Expr > &qual_expr)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation