OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Analyzer::KeyForStringExpr Class Reference

#include <Analyzer.h>

+ Inheritance diagram for Analyzer::KeyForStringExpr:
+ Collaboration diagram for Analyzer::KeyForStringExpr:

Public Member Functions

 KeyForStringExpr (std::shared_ptr< Analyzer::Expr > a)
 
const Exprget_arg () const
 
const std::shared_ptr
< Analyzer::Expr
get_own_arg () const
 
std::shared_ptr< Analyzer::Exprdeep_copy () const override
 
void group_predicates (std::list< const Expr * > &scan_predicates, std::list< const Expr * > &join_predicates, std::list< const Expr * > &const_predicates) const override
 
void collect_rte_idx (std::set< int > &rte_idx_set) const override
 
void collect_column_var (std::set< const ColumnVar *, bool(*)(const ColumnVar *, const ColumnVar *)> &colvar_set, bool include_agg) const override
 
std::shared_ptr< Analyzer::Exprrewrite_with_targetlist (const std::vector< std::shared_ptr< TargetEntry >> &tlist) const override
 
std::shared_ptr< Analyzer::Exprrewrite_with_child_targetlist (const std::vector< std::shared_ptr< TargetEntry >> &tlist) const override
 
std::shared_ptr< Analyzer::Exprrewrite_agg_to_var (const std::vector< std::shared_ptr< TargetEntry >> &tlist) const override
 
bool operator== (const Expr &rhs) const override
 
std::string toString () const override
 
void find_expr (std::function< bool(const Expr *)> f, std::list< const Expr * > &expr_list) const override
 
- Public Member Functions inherited from Analyzer::Expr
 Expr (SQLTypes t, bool notnull)
 
 Expr (SQLTypes t, int d, bool notnull)
 
 Expr (SQLTypes t, int d, int s, bool notnull)
 
 Expr (const SQLTypeInfo &ti, bool has_agg=false)
 
virtual ~Expr ()
 
std::shared_ptr< Analyzer::Exprget_shared_ptr ()
 
const SQLTypeInfoget_type_info () const
 
void set_type_info (const SQLTypeInfo &ti)
 
bool get_contains_agg () const
 
void set_contains_agg (bool a)
 
virtual std::shared_ptr
< Analyzer::Expr
add_cast (const SQLTypeInfo &new_type_info)
 
virtual void check_group_by (const std::list< std::shared_ptr< Analyzer::Expr >> &groupby) const
 
virtual std::shared_ptr
< Analyzer::Expr
normalize_simple_predicate (int &rte_idx) const
 
virtual size_t get_num_column_vars (const bool include_agg) const
 
virtual void print () const
 
virtual void add_unique (std::list< const Expr * > &expr_list) const
 
std::shared_ptr< Analyzer::Exprdecompress ()
 
virtual void get_domain (DomainSet &domain_set) const
 

Private Attributes

std::shared_ptr< Analyzer::Exprarg
 

Additional Inherited Members

- Protected Attributes inherited from Analyzer::Expr
SQLTypeInfo type_info
 
bool contains_agg
 

Detailed Description

Definition at line 761 of file Analyzer.h.

Constructor & Destructor Documentation

Analyzer::KeyForStringExpr::KeyForStringExpr ( std::shared_ptr< Analyzer::Expr a)
inline

Definition at line 763 of file Analyzer.h.

764  : Expr(kINT, a->get_type_info().get_notnull()), arg(a) {}
Expr(SQLTypes t, bool notnull)
Definition: Analyzer.h:70
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
constexpr double a
Definition: Utm.h:32
Definition: sqltypes.h:62

Member Function Documentation

void Analyzer::KeyForStringExpr::collect_column_var ( std::set< const ColumnVar *, bool(*)(const ColumnVar *, const ColumnVar *)> &  colvar_set,
bool  include_agg 
) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 774 of file Analyzer.h.

References arg.

777  {
778  arg->collect_column_var(colvar_set, include_agg);
779  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
void Analyzer::KeyForStringExpr::collect_rte_idx ( std::set< int > &  rte_idx_set) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 771 of file Analyzer.h.

References arg.

771  {
772  arg->collect_rte_idx(rte_idx_set);
773  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
std::shared_ptr< Analyzer::Expr > Analyzer::KeyForStringExpr::deep_copy ( ) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 140 of file Analyzer.cpp.

References arg.

140  {
141  return makeExpr<KeyForStringExpr>(arg->deep_copy());
142 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
void Analyzer::KeyForStringExpr::find_expr ( std::function< bool(const Expr *)>  f,
std::list< const Expr * > &  expr_list 
) const
overridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 3166 of file Analyzer.cpp.

References Analyzer::Expr::add_unique(), arg, and anonymous_namespace{Utm.h}::f.

3167  {
3168  if (f(this)) {
3169  add_unique(expr_list);
3170  return;
3171  }
3172  arg->find_expr(f, expr_list);
3173 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
virtual void add_unique(std::list< const Expr * > &expr_list) const
Definition: Analyzer.cpp:3116
constexpr double f
Definition: Utm.h:31

+ Here is the call graph for this function:

const Expr* Analyzer::KeyForStringExpr::get_arg ( ) const
inline

Definition at line 765 of file Analyzer.h.

References arg.

Referenced by CodeGenerator::codegen(), operator==(), DeepCopyVisitor::visitKeyForString(), and ScalarExprVisitor< std::set< shared::TableKey > >::visitKeyForString().

765 { return arg.get(); }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798

+ Here is the caller graph for this function:

const std::shared_ptr<Analyzer::Expr> Analyzer::KeyForStringExpr::get_own_arg ( ) const
inline

Definition at line 766 of file Analyzer.h.

References arg.

766 { return arg; }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
void Analyzer::KeyForStringExpr::group_predicates ( std::list< const Expr * > &  scan_predicates,
std::list< const Expr * > &  join_predicates,
std::list< const Expr * > &  const_predicates 
) const
overridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 1698 of file Analyzer.cpp.

References arg.

1700  {
1701  std::set<int> rte_idx_set;
1702  arg->collect_rte_idx(rte_idx_set);
1703  if (rte_idx_set.size() > 1) {
1704  join_predicates.push_back(this);
1705  } else if (rte_idx_set.size() == 1) {
1706  scan_predicates.push_back(this);
1707  } else {
1708  const_predicates.push_back(this);
1709  }
1710 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
bool Analyzer::KeyForStringExpr::operator== ( const Expr rhs) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 2332 of file Analyzer.cpp.

References arg, and get_arg().

2332  {
2333  if (typeid(rhs) != typeid(KeyForStringExpr)) {
2334  return false;
2335  }
2336  const KeyForStringExpr& rhs_cl = dynamic_cast<const KeyForStringExpr&>(rhs);
2337  if (!(*arg == *rhs_cl.get_arg())) {
2338  return false;
2339  }
2340  return true;
2341 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
KeyForStringExpr(std::shared_ptr< Analyzer::Expr > a)
Definition: Analyzer.h:763

+ Here is the call graph for this function:

std::shared_ptr<Analyzer::Expr> Analyzer::KeyForStringExpr::rewrite_agg_to_var ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 788 of file Analyzer.h.

References arg.

789  {
790  return makeExpr<KeyForStringExpr>(arg->rewrite_agg_to_var(tlist));
791  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
std::shared_ptr<Analyzer::Expr> Analyzer::KeyForStringExpr::rewrite_with_child_targetlist ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 784 of file Analyzer.h.

References arg.

785  {
786  return makeExpr<KeyForStringExpr>(arg->rewrite_with_child_targetlist(tlist));
787  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
std::shared_ptr<Analyzer::Expr> Analyzer::KeyForStringExpr::rewrite_with_targetlist ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 780 of file Analyzer.h.

References arg.

781  {
782  return makeExpr<KeyForStringExpr>(arg->rewrite_with_targetlist(tlist));
783  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798
std::string Analyzer::KeyForStringExpr::toString ( ) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 2828 of file Analyzer.cpp.

References arg.

2828  {
2829  std::string str{"KEY_FOR_STRING("};
2830  str += arg->toString();
2831  str += ") ";
2832  return str;
2833 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:798

Member Data Documentation


The documentation for this class was generated from the following files: