OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Analyzer::UOper Class Reference

#include <Analyzer.h>

+ Inheritance diagram for Analyzer::UOper:
+ Collaboration diagram for Analyzer::UOper:

Public Member Functions

 UOper (const SQLTypeInfo &ti, bool has_agg, SQLOps o, std::shared_ptr< Analyzer::Expr > p)
 
 UOper (SQLTypes t, SQLOps o, std::shared_ptr< Analyzer::Expr > p)
 
SQLOps get_optype () const
 
const Exprget_operand () const
 
const std::shared_ptr
< Analyzer::Expr
get_own_operand () const
 
void check_group_by (const std::list< std::shared_ptr< Analyzer::Expr >> &groupby) const override
 
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
 
std::shared_ptr< Analyzer::Expradd_cast (const SQLTypeInfo &new_type_info) 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
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
 

Protected Attributes

SQLOps optype
 
std::shared_ptr< Analyzer::Exproperand
 
- Protected Attributes inherited from Analyzer::Expr
SQLTypeInfo type_info
 
bool contains_agg
 

Detailed Description

Definition at line 375 of file Analyzer.h.

Constructor & Destructor Documentation

Analyzer::UOper::UOper ( const SQLTypeInfo ti,
bool  has_agg,
SQLOps  o,
std::shared_ptr< Analyzer::Expr p 
)
inline

Definition at line 377 of file Analyzer.h.

378  : Expr(ti, has_agg), optype(o), operand(p) {}
Expr(SQLTypes t, bool notnull)
Definition: Analyzer.h:70
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
SQLOps optype
Definition: Analyzer.h:423
Analyzer::UOper::UOper ( SQLTypes  t,
SQLOps  o,
std::shared_ptr< Analyzer::Expr p 
)
inline

Definition at line 379 of file Analyzer.h.

380  : Expr(t, o == kISNULL ? true : p->get_type_info().get_notnull())
381  , optype(o)
382  , operand(p) {}
Expr(SQLTypes t, bool notnull)
Definition: Analyzer.h:70
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
SQLOps optype
Definition: Analyzer.h:423

Member Function Documentation

std::shared_ptr< Analyzer::Expr > Analyzer::UOper::add_cast ( const SQLTypeInfo new_type_info)
overridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 1442 of file Analyzer.cpp.

References Analyzer::Expr::add_cast(), SQLTypeInfo::get_compression(), Analyzer::anonymous_namespace{Analyzer.cpp}::has_same_dict(), SQLTypeInfo::is_string(), kCAST, kENCODING_DICT, kENCODING_NONE, operand, optype, run_benchmark_import::result, and Analyzer::Expr::type_info.

1442  {
1443  if (optype != kCAST) {
1444  return Expr::add_cast(new_type_info);
1445  }
1446  if (type_info.is_string() && new_type_info.is_string() &&
1447  new_type_info.get_compression() == kENCODING_DICT &&
1449  const SQLTypeInfo oti = operand->get_type_info();
1450  if (oti.is_string() && oti.get_compression() == kENCODING_DICT &&
1451  has_same_dict(oti, new_type_info)) {
1452  auto result = operand;
1453  operand = nullptr;
1454  return result;
1455  }
1456  }
1457  return Expr::add_cast(new_type_info);
1458 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
Definition: sqldefs.h:48
bool has_same_dict(const SQLTypeInfo &type1, const SQLTypeInfo &type2)
Definition: Analyzer.cpp:443
SQLTypeInfo type_info
Definition: Analyzer.h:180
HOST DEVICE EncodingType get_compression() const
Definition: sqltypes.h:399
virtual std::shared_ptr< Analyzer::Expr > add_cast(const SQLTypeInfo &new_type_info)
Definition: Analyzer.cpp:774
bool is_string() const
Definition: sqltypes.h:559
SQLOps optype
Definition: Analyzer.h:423

+ Here is the call graph for this function:

void Analyzer::UOper::check_group_by ( const std::list< std::shared_ptr< Analyzer::Expr >> &  groupby) const
overridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 1533 of file Analyzer.cpp.

References operand.

1534  {
1535  operand->check_group_by(groupby);
1536 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
void Analyzer::UOper::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 395 of file Analyzer.h.

References operand.

398  {
399  operand->collect_column_var(colvar_set, include_agg);
400  }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
void Analyzer::UOper::collect_rte_idx ( std::set< int > &  rte_idx_set) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 392 of file Analyzer.h.

References operand.

392  {
393  operand->collect_rte_idx(rte_idx_set);
394  }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
std::shared_ptr< Analyzer::Expr > Analyzer::UOper::deep_copy ( ) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 102 of file Analyzer.cpp.

References Analyzer::Expr::contains_agg, operand, optype, and Analyzer::Expr::type_info.

102  {
103  return makeExpr<UOper>(type_info, contains_agg, optype, operand->deep_copy());
104 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
SQLTypeInfo type_info
Definition: Analyzer.h:180
bool contains_agg
Definition: Analyzer.h:181
SQLOps optype
Definition: Analyzer.h:423
void Analyzer::UOper::find_expr ( std::function< bool(const Expr *)>  f,
std::list< const Expr * > &  expr_list 
) const
overridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 3265 of file Analyzer.cpp.

References Analyzer::Expr::add_unique(), f(), and operand.

3266  {
3267  if (f(this)) {
3268  add_unique(expr_list);
3269  return;
3270  }
3271  operand->find_expr(f, expr_list);
3272 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
virtual void add_unique(std::list< const Expr * > &expr_list) const
Definition: Analyzer.cpp:3245
torch::Tensor f(torch::Tensor x, torch::Tensor W_target, torch::Tensor b_target)

+ Here is the call graph for this function:

const std::shared_ptr<Analyzer::Expr> Analyzer::UOper::get_own_operand ( ) const
inline

Definition at line 385 of file Analyzer.h.

References operand.

Referenced by remove_cast().

385 { return operand; }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424

+ Here is the caller graph for this function:

void Analyzer::UOper::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 1628 of file Analyzer.cpp.

References operand.

1630  {
1631  std::set<int> rte_idx_set;
1632  operand->collect_rte_idx(rte_idx_set);
1633  if (rte_idx_set.size() > 1) {
1634  join_predicates.push_back(this);
1635  } else if (rte_idx_set.size() == 1) {
1636  scan_predicates.push_back(this);
1637  } else {
1638  const_predicates.push_back(this);
1639  }
1640 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
bool Analyzer::UOper::operator== ( const Expr rhs) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 2351 of file Analyzer.cpp.

References get_operand(), get_optype(), operand, and optype.

2351  {
2352  if (typeid(rhs) != typeid(UOper)) {
2353  return false;
2354  }
2355  const UOper& rhs_uo = dynamic_cast<const UOper&>(rhs);
2356  return optype == rhs_uo.get_optype() && *operand == *rhs_uo.get_operand();
2357 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
UOper(const SQLTypeInfo &ti, bool has_agg, SQLOps o, std::shared_ptr< Analyzer::Expr > p)
Definition: Analyzer.h:377
SQLOps optype
Definition: Analyzer.h:423

+ Here is the call graph for this function:

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

Reimplemented from Analyzer::Expr.

Definition at line 411 of file Analyzer.h.

References Analyzer::Expr::contains_agg, operand, optype, and Analyzer::Expr::type_info.

412  {
413  return makeExpr<UOper>(
414  type_info, contains_agg, optype, operand->rewrite_agg_to_var(tlist));
415  }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
SQLTypeInfo type_info
Definition: Analyzer.h:180
bool contains_agg
Definition: Analyzer.h:181
SQLOps optype
Definition: Analyzer.h:423
std::shared_ptr<Analyzer::Expr> Analyzer::UOper::rewrite_with_child_targetlist ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 406 of file Analyzer.h.

References Analyzer::Expr::contains_agg, operand, optype, and Analyzer::Expr::type_info.

407  {
408  return makeExpr<UOper>(
409  type_info, contains_agg, optype, operand->rewrite_with_child_targetlist(tlist));
410  }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
SQLTypeInfo type_info
Definition: Analyzer.h:180
bool contains_agg
Definition: Analyzer.h:181
SQLOps optype
Definition: Analyzer.h:423
std::shared_ptr<Analyzer::Expr> Analyzer::UOper::rewrite_with_targetlist ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 401 of file Analyzer.h.

References Analyzer::Expr::contains_agg, operand, optype, and Analyzer::Expr::type_info.

402  {
403  return makeExpr<UOper>(
404  type_info, contains_agg, optype, operand->rewrite_with_targetlist(tlist));
405  }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
SQLTypeInfo type_info
Definition: Analyzer.h:180
bool contains_agg
Definition: Analyzer.h:181
SQLOps optype
Definition: Analyzer.h:423
std::string Analyzer::UOper::toString ( ) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 2755 of file Analyzer.cpp.

References SQLTypeInfo::get_comp_param(), SQLTypeInfo::get_compression_name(), SQLTypeInfo::get_precision(), SQLTypeInfo::get_scale(), SQLTypeInfo::get_type_name(), kCAST, kEXISTS, kISNULL, kNOT, kUMINUS, kUNNEST, operand, optype, to_string(), and Analyzer::Expr::type_info.

2755  {
2756  std::string op;
2757  switch (optype) {
2758  case kNOT:
2759  op = "NOT ";
2760  break;
2761  case kUMINUS:
2762  op = "- ";
2763  break;
2764  case kISNULL:
2765  op = "IS NULL ";
2766  break;
2767  case kEXISTS:
2768  op = "EXISTS ";
2769  break;
2770  case kCAST:
2771  op = "CAST " + type_info.get_type_name() + "(" +
2773  std::to_string(type_info.get_scale()) + ") " +
2776  break;
2777  case kUNNEST:
2778  op = "UNNEST ";
2779  break;
2780  default:
2781  break;
2782  }
2783  return "(" + op + operand->toString() + ") ";
2784 }
std::shared_ptr< Analyzer::Expr > operand
Definition: Analyzer.h:424
HOST DEVICE int get_scale() const
Definition: sqltypes.h:396
std::string get_compression_name() const
Definition: sqltypes.h:520
Definition: sqldefs.h:48
SQLTypeInfo type_info
Definition: Analyzer.h:180
std::string to_string(char const *&&v)
int get_precision() const
Definition: sqltypes.h:394
std::string get_type_name() const
Definition: sqltypes.h:482
HOST DEVICE int get_comp_param() const
Definition: sqltypes.h:402
Definition: sqldefs.h:38
SQLOps optype
Definition: Analyzer.h:423

+ Here is the call graph for this function:

Member Data Documentation

SQLOps Analyzer::UOper::optype
protected

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