OmniSciDB  72c90bc290
 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 2737 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().

2738  {
2739  CHECK(qual_expr);
2740  auto bin_oper = std::dynamic_pointer_cast<const Analyzer::BinOper>(qual_expr);
2741  if (!bin_oper) {
2742  const auto rewritten_qual_expr = rewrite_expr(qual_expr.get());
2743  return {{}, {rewritten_qual_expr ? rewritten_qual_expr : qual_expr}};
2744  }
2745 
2746  if (bin_oper->get_optype() == kAND) {
2747  const auto lhs_cf = qual_to_conjunctive_form(bin_oper->get_own_left_operand());
2748  const auto rhs_cf = qual_to_conjunctive_form(bin_oper->get_own_right_operand());
2749  auto simple_quals = lhs_cf.simple_quals;
2750  simple_quals.insert(
2751  simple_quals.end(), rhs_cf.simple_quals.begin(), rhs_cf.simple_quals.end());
2752  auto quals = lhs_cf.quals;
2753  quals.insert(quals.end(), rhs_cf.quals.begin(), rhs_cf.quals.end());
2754  return {simple_quals, quals};
2755  }
2756  int rte_idx{0};
2757  const auto simple_qual = bin_oper->normalize_simple_predicate(rte_idx);
2758  return simple_qual ? QualsConjunctiveForm{{simple_qual}, {}}
2759  : QualsConjunctiveForm{{}, {qual_expr}};
2760 }
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 2762 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().

2763  {
2764  CHECK(qual_expr);
2765  const auto bin_oper = std::dynamic_pointer_cast<const Analyzer::BinOper>(qual_expr);
2766  if (!bin_oper) {
2767  const auto rewritten_qual_expr = rewrite_expr(qual_expr.get());
2768  return {rewritten_qual_expr ? rewritten_qual_expr : qual_expr};
2769  }
2770  if (bin_oper->get_optype() == kOR) {
2771  const auto lhs_df = qual_to_disjunctive_form(bin_oper->get_own_left_operand());
2772  const auto rhs_df = qual_to_disjunctive_form(bin_oper->get_own_right_operand());
2773  auto quals = lhs_df;
2774  quals.insert(quals.end(), rhs_df.begin(), rhs_df.end());
2775  return quals;
2776  }
2777  return {qual_expr};
2778 }
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