OmniSciDB
a5dc49c757
|
#include <Analyzer.h>
Public Member Functions | |
RangeOper (const bool l_inclusive, const bool r_inclusive, std::shared_ptr< Analyzer::Expr > l, std::shared_ptr< Analyzer::Expr > r) | |
const Expr * | get_left_operand () const |
const Expr * | get_right_operand () const |
std::shared_ptr< Analyzer::Expr > | deep_copy () const override |
bool | operator== (const Expr &rhs) const override |
std::string | toString () 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 |
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::Expr > | get_shared_ptr () |
const SQLTypeInfo & | get_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 void | group_predicates (std::list< const Expr * > &scan_predicates, std::list< const Expr * > &join_predicates, std::list< const Expr * > &const_predicates) const |
virtual size_t | get_num_column_vars (const bool include_agg) const |
virtual std::shared_ptr < Analyzer::Expr > | rewrite_with_targetlist (const std::vector< std::shared_ptr< TargetEntry >> &tlist) const |
virtual std::shared_ptr < Analyzer::Expr > | rewrite_with_child_targetlist (const std::vector< std::shared_ptr< TargetEntry >> &tlist) const |
virtual std::shared_ptr < Analyzer::Expr > | rewrite_agg_to_var (const std::vector< std::shared_ptr< TargetEntry >> &tlist) const |
virtual void | print () const |
virtual void | add_unique (std::list< const Expr * > &expr_list) const |
virtual void | find_expr (std::function< bool(const Expr *)> f, std::list< const Expr * > &expr_list) const |
std::shared_ptr< Analyzer::Expr > | decompress () |
virtual void | get_domain (DomainSet &domain_set) const |
Private Attributes | |
bool | left_inclusive_ |
bool | right_inclusive_ |
std::shared_ptr< Analyzer::Expr > | left_operand_ |
std::shared_ptr< Analyzer::Expr > | right_operand_ |
Additional Inherited Members | |
Protected Attributes inherited from Analyzer::Expr | |
SQLTypeInfo | type_info |
bool | contains_agg |
Definition at line 537 of file Analyzer.h.
|
inline |
Definition at line 539 of file Analyzer.h.
References CHECK, left_operand_, and right_operand_.
|
inlineoverridevirtual |
Reimplemented from Analyzer::Expr.
Definition at line 564 of file Analyzer.h.
References left_operand_, and right_operand_.
|
inlineoverridevirtual |
Reimplemented from Analyzer::Expr.
Definition at line 559 of file Analyzer.h.
References left_operand_, and right_operand_.
|
overridevirtual |
Implements Analyzer::Expr.
Definition at line 115 of file Analyzer.cpp.
References left_inclusive_, left_operand_, right_inclusive_, and right_operand_.
|
inline |
Definition at line 552 of file Analyzer.h.
References left_operand_.
Referenced by RangeJoinHashTable::getInstance(), RangeJoinHashTable::isInnerColCompressed(), RangeJoinHashTable::reifyWithLayout(), and ScalarExprVisitor< std::set< shared::TableKey > >::visitRangeJoinOper().
|
inline |
Definition at line 553 of file Analyzer.h.
References right_operand_.
Referenced by RangeJoinHashTable::reifyWithLayout(), and ScalarExprVisitor< std::set< shared::TableKey > >::visitRangeJoinOper().
|
overridevirtual |
Implements Analyzer::Expr.
Definition at line 2368 of file Analyzer.cpp.
References left_inclusive_, left_operand_, right_inclusive_, and right_operand_.
|
overridevirtual |
Implements Analyzer::Expr.
Definition at line 2850 of file Analyzer.cpp.
References left_inclusive_, left_operand_, right_inclusive_, and right_operand_.
Referenced by RangeJoinHashTable::getInstance().
|
private |
Definition at line 574 of file Analyzer.h.
Referenced by deep_copy(), operator==(), and toString().
|
private |
Definition at line 576 of file Analyzer.h.
Referenced by collect_column_var(), collect_rte_idx(), deep_copy(), get_left_operand(), operator==(), RangeOper(), and toString().
|
private |
Definition at line 575 of file Analyzer.h.
Referenced by deep_copy(), operator==(), and toString().
|
private |
Definition at line 577 of file Analyzer.h.
Referenced by collect_column_var(), collect_rte_idx(), deep_copy(), get_right_operand(), operator==(), RangeOper(), and toString().