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

#include <ParserNode.h>

+ Inheritance diagram for Parser::IntLiteral:
+ Collaboration diagram for Parser::IntLiteral:

Public Member Functions

 IntLiteral (int64_t i)
 
int64_t get_intval () 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 ()
 

Static Public Member Functions

static std::shared_ptr
< Analyzer::Expr
analyzeValue (const int64_t intval)
 

Private Attributes

int64_t intval_
 

Additional Inherited Members

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

Detailed Description

Definition at line 153 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::IntLiteral::IntLiteral ( int64_t  i)
inlineexplicit

Definition at line 155 of file ParserNode.h.

155 : intval_(i) {}

Member Function Documentation

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

Implements Parser::Literal.

Definition at line 158 of file ParserNode.cpp.

161  {
162  return analyzeValue(intval_);
163 }
static std::shared_ptr< Analyzer::Expr > analyzeValue(const int64_t intval)
Definition: ParserNode.cpp:165
std::shared_ptr< Analyzer::Expr > Parser::IntLiteral::analyzeValue ( const int64_t  intval)
static

Definition at line 165 of file ParserNode.cpp.

References Datum::bigintval, Datum::intval, kBIGINT, kINT, kSMALLINT, and Datum::smallintval.

Referenced by InValuesBitmap::codegen(), StringDictionaryTranslationMgr::codegen(), CodeGenerator::codegenDeciDiv(), generate_kernel_buffer_constants(), and RelAlgTranslator::translateLiteral().

165  {
166  SQLTypes t;
167  Datum d;
168  if (intval >= INT16_MIN && intval <= INT16_MAX) {
169  t = kSMALLINT;
170  d.smallintval = (int16_t)intval;
171  } else if (intval >= INT32_MIN && intval <= INT32_MAX) {
172  t = kINT;
173  d.intval = (int32_t)intval;
174  } else {
175  t = kBIGINT;
176  d.bigintval = intval;
177  }
178  return makeExpr<Analyzer::Constant>(t, false, d);
179 }
SQLTypes
Definition: sqltypes.h:65
int32_t intval
Definition: Datum.h:73
int64_t bigintval
Definition: Datum.h:74
int16_t smallintval
Definition: Datum.h:72
Definition: sqltypes.h:72
Definition: Datum.h:69

+ Here is the caller graph for this function:

int64_t Parser::IntLiteral::get_intval ( ) const
inline

Definition at line 156 of file ParserNode.h.

References intval_.

Referenced by Parser::QuerySpec::analyze_group_by(), Parser::AlterTableParamStmt::execute(), Parser::anonymous_namespace{ParserNode.cpp}::parse_copy_params(), and Parser::CreateModelStmt::parse_model_options().

156 { return intval_; }

+ Here is the caller graph for this function:

std::string Parser::IntLiteral::to_string ( ) const
inlineoverridevirtual

Implements Parser::Literal.

Definition at line 162 of file ParserNode.h.

References intval_.

162  {
163  return boost::lexical_cast<std::string>(intval_);
164  }

Member Data Documentation

int64_t Parser::IntLiteral::intval_
private

Definition at line 167 of file ParserNode.h.

Referenced by get_intval(), and to_string().


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