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

#include <ParserNode.h>

+ Inheritance diagram for Parser::BetweenExpr:
+ Collaboration diagram for Parser::BetweenExpr:

Public Member Functions

 BetweenExpr (bool n, Expr *a, Expr *l, Expr *u)
 
bool get_is_not () const
 
const Exprget_arg () const
 
const Exprget_lower () const
 
const Exprget_upper () const
 
std::shared_ptr< Analyzer::Expranalyze (const Catalog_Namespace::Catalog &catalog, Analyzer::Query &query, TlistRefType allow_tlist_ref=TLIST_NONE) const override
 
std::string to_string () const override
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Private Attributes

bool is_not_
 
std::unique_ptr< Exprarg_
 
std::unique_ptr< Exprlower_
 
std::unique_ptr< Exprupper_
 

Additional Inherited Members

- Public Types inherited from Parser::Expr
enum  TlistRefType { TLIST_NONE, TLIST_REF, TLIST_COPY }
 

Detailed Description

Definition at line 427 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::BetweenExpr::BetweenExpr ( bool  n,
Expr a,
Expr l,
Expr u 
)
inline

Definition at line 429 of file ParserNode.h.

430  : is_not_(n), arg_(a), lower_(l), upper_(u) {}
std::unique_ptr< Expr > lower_
Definition: ParserNode.h:444
constexpr double a
Definition: Utm.h:32
std::unique_ptr< Expr > upper_
Definition: ParserNode.h:445
constexpr double n
Definition: Utm.h:38
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:443

Member Function Documentation

std::shared_ptr< Analyzer::Expr > Parser::BetweenExpr::analyze ( const Catalog_Namespace::Catalog catalog,
Analyzer::Query query,
TlistRefType  allow_tlist_ref = TLIST_NONE 
) const
overridevirtual

Implements Parser::Expr.

Definition at line 576 of file ParserNode.cpp.

References Analyzer::BinOper::analyze_type_info(), kAND, kBOOLEAN, kGE, kLE, kNOT, kONE, and run_benchmark_import::result.

579  {
580  auto arg_expr = arg_->analyze(catalog, query, allow_tlist_ref);
581  auto lower_expr = lower_->analyze(catalog, query, allow_tlist_ref);
582  auto upper_expr = upper_->analyze(catalog, query, allow_tlist_ref);
583  SQLTypeInfo new_left_type, new_right_type;
585  arg_expr->get_type_info(),
586  lower_expr->get_type_info(),
587  &new_left_type,
588  &new_right_type);
589  auto lower_pred =
590  makeExpr<Analyzer::BinOper>(kBOOLEAN,
591  kGE,
592  kONE,
593  arg_expr->add_cast(new_left_type)->decompress(),
594  lower_expr->add_cast(new_right_type)->decompress());
596  arg_expr->get_type_info(),
597  lower_expr->get_type_info(),
598  &new_left_type,
599  &new_right_type);
600  auto upper_pred = makeExpr<Analyzer::BinOper>(
601  kBOOLEAN,
602  kLE,
603  kONE,
604  arg_expr->deep_copy()->add_cast(new_left_type)->decompress(),
605  upper_expr->add_cast(new_right_type)->decompress());
606  std::shared_ptr<Analyzer::Expr> result =
607  makeExpr<Analyzer::BinOper>(kBOOLEAN, kAND, kONE, lower_pred, upper_pred);
608  if (is_not_) {
609  result = makeExpr<Analyzer::UOper>(kBOOLEAN, kNOT, result);
610  }
611  return result;
612 }
std::unique_ptr< Expr > lower_
Definition: ParserNode.h:444
Definition: sqldefs.h:34
Definition: sqldefs.h:35
Definition: sqldefs.h:36
Definition: sqldefs.h:71
std::unique_ptr< Expr > upper_
Definition: ParserNode.h:445
Definition: sqldefs.h:38
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:443
static SQLTypeInfo analyze_type_info(SQLOps op, const SQLTypeInfo &left_type, const SQLTypeInfo &right_type, SQLTypeInfo *new_left_type, SQLTypeInfo *new_right_type)
Definition: Analyzer.cpp:267

+ Here is the call graph for this function:

const Expr* Parser::BetweenExpr::get_arg ( ) const
inline

Definition at line 432 of file ParserNode.h.

References arg_.

432 { return arg_.get(); }
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:443
bool Parser::BetweenExpr::get_is_not ( ) const
inline

Definition at line 431 of file ParserNode.h.

References is_not_.

431 { return is_not_; }
const Expr* Parser::BetweenExpr::get_lower ( ) const
inline

Definition at line 433 of file ParserNode.h.

References lower_.

433 { return lower_.get(); }
std::unique_ptr< Expr > lower_
Definition: ParserNode.h:444
const Expr* Parser::BetweenExpr::get_upper ( ) const
inline

Definition at line 434 of file ParserNode.h.

References upper_.

434 { return upper_.get(); }
std::unique_ptr< Expr > upper_
Definition: ParserNode.h:445
std::string Parser::BetweenExpr::to_string ( ) const
overridevirtual

Implements Parser::Expr.

Definition at line 2218 of file ParserNode.cpp.

2218  {
2219  std::string str = arg_->to_string();
2220  if (is_not_) {
2221  str += " NOT BETWEEN ";
2222  } else {
2223  str += " BETWEEN ";
2224  }
2225  str += lower_->to_string() + " AND " + upper_->to_string();
2226  return str;
2227 }
std::unique_ptr< Expr > lower_
Definition: ParserNode.h:444
std::unique_ptr< Expr > upper_
Definition: ParserNode.h:445
std::unique_ptr< Expr > arg_
Definition: ParserNode.h:443

Member Data Documentation

std::unique_ptr<Expr> Parser::BetweenExpr::arg_
private

Definition at line 443 of file ParserNode.h.

Referenced by get_arg().

bool Parser::BetweenExpr::is_not_
private

Definition at line 442 of file ParserNode.h.

Referenced by get_is_not().

std::unique_ptr<Expr> Parser::BetweenExpr::lower_
private

Definition at line 444 of file ParserNode.h.

Referenced by get_lower().

std::unique_ptr<Expr> Parser::BetweenExpr::upper_
private

Definition at line 445 of file ParserNode.h.

Referenced by get_upper().


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