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

#include <Analyzer.h>

+ Collaboration diagram for Analyzer::Query:

Public Member Functions

 Query ()
 
virtual ~Query ()
 
bool get_is_distinct () const
 
int get_num_aggs () const
 
const std::vector
< std::shared_ptr< TargetEntry > > & 
get_targetlist () const
 
std::vector< std::shared_ptr
< TargetEntry > > & 
get_targetlist_nonconst ()
 
const std::vector< std::vector
< std::shared_ptr< TargetEntry > > > & 
get_values_lists () const
 
std::vector< std::vector
< std::shared_ptr< TargetEntry > > > & 
get_values_lists ()
 
const std::vector
< RangeTableEntry * > & 
get_rangetable () const
 
const Exprget_where_predicate () const
 
const std::list
< std::shared_ptr
< Analyzer::Expr > > & 
get_group_by () const
 
const Exprget_having_predicate () const
 
const std::list< OrderEntry > * get_order_by () const
 
const Queryget_next_query () const
 
SQLStmtType get_stmt_type () const
 
bool get_is_unionall () const
 
int get_result_table_id () const
 
const std::list< int > & get_result_col_list () const
 
void set_result_col_list (const std::list< int > &col_list)
 
void set_result_table_id (int id)
 
void set_is_distinct (bool d)
 
void set_where_predicate (std::shared_ptr< Analyzer::Expr > p)
 
void set_group_by (std::list< std::shared_ptr< Analyzer::Expr >> &g)
 
void set_having_predicate (std::shared_ptr< Analyzer::Expr > p)
 
void set_order_by (std::list< OrderEntry > *o)
 
void set_next_query (Query *q)
 
void set_is_unionall (bool u)
 
void set_stmt_type (SQLStmtType t)
 
void set_num_aggs (int a)
 
int get_rte_idx (const std::string &range_var_name) const
 
RangeTableEntryget_rte (int rte_idx) const
 
void add_rte (RangeTableEntry *rte)
 
void add_tle (std::shared_ptr< TargetEntry > tle)
 
int64_t get_limit () const
 
void set_limit (int64_t l)
 
int64_t get_offset () const
 
void set_offset (int64_t o)
 

Private Attributes

bool is_distinct
 
std::vector< std::shared_ptr
< TargetEntry > > 
targetlist
 
std::vector< RangeTableEntry * > rangetable
 
std::shared_ptr< Analyzer::Exprwhere_predicate
 
std::list< std::shared_ptr
< Analyzer::Expr > > 
group_by
 
std::shared_ptr< Analyzer::Exprhaving_predicate
 
std::list< OrderEntry > * order_by
 
Querynext_query
 
bool is_unionall
 
SQLStmtType stmt_type
 
int num_aggs
 
int result_table_id
 
std::list< int > result_col_list
 
std::vector< std::vector
< std::shared_ptr< TargetEntry > > > 
values_lists
 
int64_t limit
 
int64_t offset
 

Detailed Description

Definition at line 3003 of file Analyzer.h.

Constructor & Destructor Documentation

Analyzer::Query::Query ( )
inline

Definition at line 3005 of file Analyzer.h.

3006  : is_distinct(false)
3007  , where_predicate(nullptr)
3008  , having_predicate(nullptr)
3009  , order_by(nullptr)
3010  , next_query(nullptr)
3011  , is_unionall(false)
3012  , stmt_type(kSELECT)
3013  , num_aggs(0)
3014  , result_table_id(0)
3015  , limit(0)
3016  , offset(0) {}
Query * next_query
Definition: Analyzer.h:3074
SQLStmtType stmt_type
Definition: Analyzer.h:3076
int64_t offset
Definition: Analyzer.h:3082
std::shared_ptr< Analyzer::Expr > having_predicate
Definition: Analyzer.h:3072
std::shared_ptr< Analyzer::Expr > where_predicate
Definition: Analyzer.h:3070
int64_t limit
Definition: Analyzer.h:3081
std::list< OrderEntry > * order_by
Definition: Analyzer.h:3073
Analyzer::Query::~Query ( )
virtual

Definition at line 50 of file Analyzer.cpp.

References next_query, order_by, and rangetable.

50  {
51  for (auto p : rangetable) {
52  delete p;
53  }
54  delete order_by;
55  delete next_query;
56 }
Query * next_query
Definition: Analyzer.h:3074
std::vector< RangeTableEntry * > rangetable
Definition: Analyzer.h:3067
std::list< OrderEntry > * order_by
Definition: Analyzer.h:3073

Member Function Documentation

void Analyzer::Query::add_rte ( RangeTableEntry rte)

Definition at line 1506 of file Analyzer.cpp.

References rangetable.

Referenced by Parser::QuerySpec::analyze_from_clause().

1506  {
1507  rangetable.push_back(rte);
1508 }
std::vector< RangeTableEntry * > rangetable
Definition: Analyzer.h:3067

+ Here is the caller graph for this function:

void Analyzer::Query::add_tle ( std::shared_ptr< TargetEntry tle)
inline

Definition at line 3058 of file Analyzer.h.

References targetlist.

3058 { targetlist.push_back(tle); }
std::vector< std::shared_ptr< TargetEntry > > targetlist
Definition: Analyzer.h:3066
const std::list<std::shared_ptr<Analyzer::Expr> >& Analyzer::Query::get_group_by ( ) const
inline

Definition at line 3034 of file Analyzer.h.

References group_by.

Referenced by Parser::QuerySpec::analyze_having_clause().

3034  {
3035  return group_by;
3036  };
std::list< std::shared_ptr< Analyzer::Expr > > group_by
Definition: Analyzer.h:3071

+ Here is the caller graph for this function:

const Expr* Analyzer::Query::get_having_predicate ( ) const
inline

Definition at line 3037 of file Analyzer.h.

References having_predicate.

3037 { return having_predicate.get(); }
std::shared_ptr< Analyzer::Expr > having_predicate
Definition: Analyzer.h:3072
bool Analyzer::Query::get_is_distinct ( ) const
inline

Definition at line 3018 of file Analyzer.h.

References is_distinct.

Referenced by Parser::SelectStmt::analyze().

3018 { return is_distinct; }

+ Here is the caller graph for this function:

bool Analyzer::Query::get_is_unionall ( ) const
inline

Definition at line 3041 of file Analyzer.h.

References is_unionall.

3041 { return is_unionall; }
int64_t Analyzer::Query::get_limit ( ) const
inline

Definition at line 3059 of file Analyzer.h.

References limit.

3059 { return limit; }
int64_t limit
Definition: Analyzer.h:3081
const Query* Analyzer::Query::get_next_query ( ) const
inline

Definition at line 3039 of file Analyzer.h.

References next_query.

3039 { return next_query; }
Query * next_query
Definition: Analyzer.h:3074
int Analyzer::Query::get_num_aggs ( ) const
inline

Definition at line 3019 of file Analyzer.h.

References num_aggs.

Referenced by Parser::FunctionRef::analyze(), and Parser::QuerySpec::analyze_group_by().

3019 { return num_aggs; }

+ Here is the caller graph for this function:

int64_t Analyzer::Query::get_offset ( ) const
inline

Definition at line 3061 of file Analyzer.h.

References offset.

3061 { return offset; }
int64_t offset
Definition: Analyzer.h:3082
const std::list<OrderEntry>* Analyzer::Query::get_order_by ( ) const
inline

Definition at line 3038 of file Analyzer.h.

References order_by.

3038 { return order_by; }
std::list< OrderEntry > * order_by
Definition: Analyzer.h:3073
const std::vector<RangeTableEntry*>& Analyzer::Query::get_rangetable ( ) const
inline

Definition at line 3032 of file Analyzer.h.

References rangetable.

Referenced by Parser::ColumnRef::analyze(), and Parser::QuerySpec::analyze_select_clause().

3032 { return rangetable; }
std::vector< RangeTableEntry * > rangetable
Definition: Analyzer.h:3067

+ Here is the caller graph for this function:

const std::list<int>& Analyzer::Query::get_result_col_list ( ) const
inline

Definition at line 3043 of file Analyzer.h.

References result_col_list.

Referenced by Parser::InsertValuesStmt::analyze(), and RelAlgExecutor::executeSimpleInsert().

3043 { return result_col_list; }
std::list< int > result_col_list
Definition: Analyzer.h:3079

+ Here is the caller graph for this function:

int Analyzer::Query::get_result_table_id ( ) const
inline

Definition at line 3042 of file Analyzer.h.

References result_table_id.

Referenced by Parser::InsertValuesStmt::analyze(), and RelAlgExecutor::executeSimpleInsert().

3042 { return result_table_id; }

+ Here is the caller graph for this function:

RangeTableEntry* Analyzer::Query::get_rte ( int  rte_idx) const
inline

Definition at line 3056 of file Analyzer.h.

References rangetable.

Referenced by Parser::ColumnRef::analyze(), and Parser::QuerySpec::analyze_select_clause().

3056 { return rangetable[rte_idx]; }
std::vector< RangeTableEntry * > rangetable
Definition: Analyzer.h:3067

+ Here is the caller graph for this function:

int Analyzer::Query::get_rte_idx ( const std::string &  range_var_name) const

Definition at line 1495 of file Analyzer.cpp.

References setup::name, and rangetable.

Referenced by Parser::ColumnRef::analyze(), and Parser::QuerySpec::analyze_select_clause().

1495  {
1496  int rte_idx = 0;
1497  for (auto rte : rangetable) {
1498  if (rte->get_rangevar() == name) {
1499  return rte_idx;
1500  }
1501  rte_idx++;
1502  }
1503  return -1;
1504 }
std::vector< RangeTableEntry * > rangetable
Definition: Analyzer.h:3067
string name
Definition: setup.in.py:72

+ Here is the caller graph for this function:

SQLStmtType Analyzer::Query::get_stmt_type ( ) const
inline

Definition at line 3040 of file Analyzer.h.

References stmt_type.

3040 { return stmt_type; }
SQLStmtType stmt_type
Definition: Analyzer.h:3076
const std::vector<std::shared_ptr<TargetEntry> >& Analyzer::Query::get_targetlist ( ) const
inline

Definition at line 3020 of file Analyzer.h.

References targetlist.

Referenced by Parser::ColumnRef::analyze(), Parser::SelectStmt::analyze(), and Parser::QuerySpec::analyze_group_by().

3020  {
3021  return targetlist;
3022  }
std::vector< std::shared_ptr< TargetEntry > > targetlist
Definition: Analyzer.h:3066

+ Here is the caller graph for this function:

std::vector<std::shared_ptr<TargetEntry> >& Analyzer::Query::get_targetlist_nonconst ( )
inline

Definition at line 3023 of file Analyzer.h.

References targetlist.

Referenced by Parser::QuerySpec::analyze_select_clause().

3023  {
3024  return targetlist;
3025  }
std::vector< std::shared_ptr< TargetEntry > > targetlist
Definition: Analyzer.h:3066

+ Here is the caller graph for this function:

const std::vector<std::vector<std::shared_ptr<TargetEntry> > >& Analyzer::Query::get_values_lists ( ) const
inline

Definition at line 3026 of file Analyzer.h.

References values_lists.

Referenced by Parser::InsertValuesStmt::analyze(), and RelAlgExecutor::executeSimpleInsert().

3026  {
3027  return values_lists;
3028  }
std::vector< std::vector< std::shared_ptr< TargetEntry > > > values_lists
Definition: Analyzer.h:3080

+ Here is the caller graph for this function:

std::vector<std::vector<std::shared_ptr<TargetEntry> > >& Analyzer::Query::get_values_lists ( )
inline

Definition at line 3029 of file Analyzer.h.

References values_lists.

3029  {
3030  return values_lists;
3031  }
std::vector< std::vector< std::shared_ptr< TargetEntry > > > values_lists
Definition: Analyzer.h:3080
const Expr* Analyzer::Query::get_where_predicate ( ) const
inline

Definition at line 3033 of file Analyzer.h.

References where_predicate.

3033 { return where_predicate.get(); }
std::shared_ptr< Analyzer::Expr > where_predicate
Definition: Analyzer.h:3070
void Analyzer::Query::set_group_by ( std::list< std::shared_ptr< Analyzer::Expr >> &  g)
inline

Definition at line 3048 of file Analyzer.h.

References group_by.

Referenced by Parser::QuerySpec::analyze_group_by().

3048 { group_by = g; }
std::list< std::shared_ptr< Analyzer::Expr > > group_by
Definition: Analyzer.h:3071

+ Here is the caller graph for this function:

void Analyzer::Query::set_having_predicate ( std::shared_ptr< Analyzer::Expr p)
inline

Definition at line 3049 of file Analyzer.h.

References having_predicate.

Referenced by Parser::QuerySpec::analyze_having_clause().

3049 { having_predicate = p; }
std::shared_ptr< Analyzer::Expr > having_predicate
Definition: Analyzer.h:3072

+ Here is the caller graph for this function:

void Analyzer::Query::set_is_distinct ( bool  d)
inline

Definition at line 3046 of file Analyzer.h.

References is_distinct.

Referenced by Parser::QuerySpec::analyze().

3046 { is_distinct = d; }

+ Here is the caller graph for this function:

void Analyzer::Query::set_is_unionall ( bool  u)
inline

Definition at line 3052 of file Analyzer.h.

References is_unionall.

Referenced by Parser::UnionQuery::analyze().

3052 { is_unionall = u; }

+ Here is the caller graph for this function:

void Analyzer::Query::set_limit ( int64_t  l)
inline

Definition at line 3060 of file Analyzer.h.

References limit.

Referenced by Parser::SelectStmt::analyze().

3060 { limit = l; }
int64_t limit
Definition: Analyzer.h:3081

+ Here is the caller graph for this function:

void Analyzer::Query::set_next_query ( Query q)
inline

Definition at line 3051 of file Analyzer.h.

References next_query.

Referenced by Parser::UnionQuery::analyze().

3051 { next_query = q; }
Query * next_query
Definition: Analyzer.h:3074

+ Here is the caller graph for this function:

void Analyzer::Query::set_num_aggs ( int  a)
inline

Definition at line 3054 of file Analyzer.h.

References anonymous_namespace{Utm.h}::a, and num_aggs.

Referenced by Parser::FunctionRef::analyze().

3054 { num_aggs = a; }
constexpr double a
Definition: Utm.h:32

+ Here is the caller graph for this function:

void Analyzer::Query::set_offset ( int64_t  o)
inline

Definition at line 3062 of file Analyzer.h.

References offset.

Referenced by Parser::SelectStmt::analyze().

3062 { offset = o; }
int64_t offset
Definition: Analyzer.h:3082

+ Here is the caller graph for this function:

void Analyzer::Query::set_order_by ( std::list< OrderEntry > *  o)
inline

Definition at line 3050 of file Analyzer.h.

References order_by.

Referenced by Parser::SelectStmt::analyze().

3050 { order_by = o; }
std::list< OrderEntry > * order_by
Definition: Analyzer.h:3073

+ Here is the caller graph for this function:

void Analyzer::Query::set_result_col_list ( const std::list< int > &  col_list)
inline

Definition at line 3044 of file Analyzer.h.

References result_col_list.

Referenced by Parser::InsertStmt::analyze().

3044 { result_col_list = col_list; }
std::list< int > result_col_list
Definition: Analyzer.h:3079

+ Here is the caller graph for this function:

void Analyzer::Query::set_result_table_id ( int  id)
inline

Definition at line 3045 of file Analyzer.h.

References result_table_id.

Referenced by Parser::InsertStmt::analyze().

3045 { result_table_id = id; }

+ Here is the caller graph for this function:

void Analyzer::Query::set_stmt_type ( SQLStmtType  t)
inline

Definition at line 3053 of file Analyzer.h.

References stmt_type.

Referenced by Parser::SelectStmt::analyze(), and Parser::InsertStmt::analyze().

3053 { stmt_type = t; }
SQLStmtType stmt_type
Definition: Analyzer.h:3076

+ Here is the caller graph for this function:

void Analyzer::Query::set_where_predicate ( std::shared_ptr< Analyzer::Expr p)
inline

Definition at line 3047 of file Analyzer.h.

References where_predicate.

Referenced by Parser::QuerySpec::analyze_where_clause().

3047 { where_predicate = p; }
std::shared_ptr< Analyzer::Expr > where_predicate
Definition: Analyzer.h:3070

+ Here is the caller graph for this function:

Member Data Documentation

std::list<std::shared_ptr<Analyzer::Expr> > Analyzer::Query::group_by
private

Definition at line 3071 of file Analyzer.h.

Referenced by get_group_by(), and set_group_by().

std::shared_ptr<Analyzer::Expr> Analyzer::Query::having_predicate
private

Definition at line 3072 of file Analyzer.h.

Referenced by get_having_predicate(), and set_having_predicate().

bool Analyzer::Query::is_unionall
private

Definition at line 3075 of file Analyzer.h.

Referenced by get_is_unionall(), and set_is_unionall().

int64_t Analyzer::Query::limit
private

Definition at line 3081 of file Analyzer.h.

Referenced by get_limit(), and set_limit().

Query* Analyzer::Query::next_query
private

Definition at line 3074 of file Analyzer.h.

Referenced by get_next_query(), set_next_query(), and ~Query().

int Analyzer::Query::num_aggs
private

Definition at line 3077 of file Analyzer.h.

Referenced by get_num_aggs(), and set_num_aggs().

int64_t Analyzer::Query::offset
private

Definition at line 3082 of file Analyzer.h.

Referenced by get_offset(), and set_offset().

std::list<OrderEntry>* Analyzer::Query::order_by
private

Definition at line 3073 of file Analyzer.h.

Referenced by get_order_by(), set_order_by(), and ~Query().

std::vector<RangeTableEntry*> Analyzer::Query::rangetable
private

Definition at line 3067 of file Analyzer.h.

Referenced by add_rte(), get_rangetable(), get_rte(), get_rte_idx(), and ~Query().

std::list<int> Analyzer::Query::result_col_list
private

Definition at line 3079 of file Analyzer.h.

Referenced by get_result_col_list(), and set_result_col_list().

int Analyzer::Query::result_table_id
private

Definition at line 3078 of file Analyzer.h.

Referenced by get_result_table_id(), and set_result_table_id().

SQLStmtType Analyzer::Query::stmt_type
private

Definition at line 3076 of file Analyzer.h.

Referenced by get_stmt_type(), and set_stmt_type().

std::vector<std::shared_ptr<TargetEntry> > Analyzer::Query::targetlist
private

Definition at line 3066 of file Analyzer.h.

Referenced by add_tle(), get_targetlist(), and get_targetlist_nonconst().

std::vector<std::vector<std::shared_ptr<TargetEntry> > > Analyzer::Query::values_lists
private

Definition at line 3080 of file Analyzer.h.

Referenced by get_values_lists().

std::shared_ptr<Analyzer::Expr> Analyzer::Query::where_predicate
private

Definition at line 3070 of file Analyzer.h.

Referenced by get_where_predicate(), and set_where_predicate().


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