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

#include <ParserNode.h>

+ Inheritance diagram for Parser::ExistsExpr:
+ Collaboration diagram for Parser::ExistsExpr:

Public Member Functions

 ExistsExpr (QuerySpec *q)
 
const QuerySpecget_query () 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

std::unique_ptr< QuerySpecquery_
 

Additional Inherited Members

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

Detailed Description

Definition at line 610 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::ExistsExpr::ExistsExpr ( QuerySpec q)
inlineexplicit

Definition at line 612 of file ParserNode.h.

612 : query_(q) {}
std::unique_ptr< QuerySpec > query_
Definition: ParserNode.h:621

Member Function Documentation

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

Implements Parser::Expr.

Definition at line 879 of file ParserNode.cpp.

882  {
883  throw std::runtime_error("Subqueries are not supported yet.");
884  return nullptr;
885 }
const QuerySpec* Parser::ExistsExpr::get_query ( ) const
inline

Definition at line 613 of file ParserNode.h.

References query_.

613 { return query_.get(); }
std::unique_ptr< QuerySpec > query_
Definition: ParserNode.h:621
std::string Parser::ExistsExpr::to_string ( ) const
overridevirtual

Implements Parser::Expr.

Definition at line 2175 of file ParserNode.cpp.

2175  {
2176  return "EXISTS (" + query_->to_string() + ")";
2177 }
std::unique_ptr< QuerySpec > query_
Definition: ParserNode.h:621

Member Data Documentation

std::unique_ptr<QuerySpec> Parser::ExistsExpr::query_
private

Definition at line 621 of file ParserNode.h.

Referenced by get_query().


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