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

#include <Analyzer.h>

+ Inheritance diagram for Analyzer::SampleRatioExpr:
+ Collaboration diagram for Analyzer::SampleRatioExpr:

Public Member Functions

 SampleRatioExpr (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 958 of file Analyzer.h.

Constructor & Destructor Documentation

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

Definition at line 960 of file Analyzer.h.

961  : Expr(kBOOLEAN, a->get_type_info().get_notnull()), arg(a) {}
Expr(SQLTypes t, bool notnull)
Definition: Analyzer.h:70
constexpr double a
Definition: Utm.h:32
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995

Member Function Documentation

void Analyzer::SampleRatioExpr::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 971 of file Analyzer.h.

References arg.

974  {
975  arg->collect_column_var(colvar_set, include_agg);
976  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
void Analyzer::SampleRatioExpr::collect_rte_idx ( std::set< int > &  rte_idx_set) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 968 of file Analyzer.h.

References arg.

968  {
969  arg->collect_rte_idx(rte_idx_set);
970  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
std::shared_ptr< Analyzer::Expr > Analyzer::SampleRatioExpr::deep_copy ( ) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 161 of file Analyzer.cpp.

References arg.

161  {
162  return makeExpr<SampleRatioExpr>(arg->deep_copy());
163 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
void Analyzer::SampleRatioExpr::find_expr ( std::function< bool(const Expr *)>  f,
std::list< const Expr * > &  expr_list 
) const
overridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 3326 of file Analyzer.cpp.

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

3327  {
3328  if (f(this)) {
3329  add_unique(expr_list);
3330  return;
3331  }
3332  arg->find_expr(f, expr_list);
3333 }
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)
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995

+ Here is the call graph for this function:

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

Definition at line 962 of file Analyzer.h.

References arg.

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

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

+ Here is the caller graph for this function:

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

Definition at line 963 of file Analyzer.h.

References arg.

963 { return arg; }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
void Analyzer::SampleRatioExpr::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 1771 of file Analyzer.cpp.

References arg.

1773  {
1774  std::set<int> rte_idx_set;
1775  arg->collect_rte_idx(rte_idx_set);
1776  if (rte_idx_set.size() > 1) {
1777  join_predicates.push_back(this);
1778  } else if (rte_idx_set.size() == 1) {
1779  scan_predicates.push_back(this);
1780  } else {
1781  const_predicates.push_back(this);
1782  }
1783 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
bool Analyzer::SampleRatioExpr::operator== ( const Expr rhs) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 2402 of file Analyzer.cpp.

References arg, and get_arg().

2402  {
2403  if (typeid(rhs) != typeid(SampleRatioExpr)) {
2404  return false;
2405  }
2406  const SampleRatioExpr& rhs_cl = dynamic_cast<const SampleRatioExpr&>(rhs);
2407  if (!(*arg == *rhs_cl.get_arg())) {
2408  return false;
2409  }
2410  return true;
2411 }
SampleRatioExpr(std::shared_ptr< Analyzer::Expr > a)
Definition: Analyzer.h:960
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995

+ Here is the call graph for this function:

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

Reimplemented from Analyzer::Expr.

Definition at line 985 of file Analyzer.h.

References arg.

986  {
987  return makeExpr<SampleRatioExpr>(arg->rewrite_agg_to_var(tlist));
988  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
std::shared_ptr<Analyzer::Expr> Analyzer::SampleRatioExpr::rewrite_with_child_targetlist ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 981 of file Analyzer.h.

References arg.

982  {
983  return makeExpr<SampleRatioExpr>(arg->rewrite_with_child_targetlist(tlist));
984  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
std::shared_ptr<Analyzer::Expr> Analyzer::SampleRatioExpr::rewrite_with_targetlist ( const std::vector< std::shared_ptr< TargetEntry >> &  tlist) const
inlineoverridevirtual

Reimplemented from Analyzer::Expr.

Definition at line 977 of file Analyzer.h.

References arg.

978  {
979  return makeExpr<SampleRatioExpr>(arg->rewrite_with_targetlist(tlist));
980  }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995
std::string Analyzer::SampleRatioExpr::toString ( ) const
overridevirtual

Implements Analyzer::Expr.

Definition at line 2964 of file Analyzer.cpp.

References arg.

2964  {
2965  std::string str{"SAMPLE_RATIO("};
2966  str += arg->toString();
2967  str += ") ";
2968  return str;
2969 }
std::shared_ptr< Analyzer::Expr > arg
Definition: Analyzer.h:995

Member Data Documentation


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