OmniSciDB  a5dc49c757
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::ColumnRef Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::ColumnRef:
+ Collaboration diagram for Parser::ColumnRef:

Public Member Functions

 ColumnRef (std::string *n1)
 
 ColumnRef (std::string *n1, std::string *n2)
 
const std::string * get_table () const
 
const std::string * get_column () 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< std::string > table_
 
std::unique_ptr< std::string > column_
 

Additional Inherited Members

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

Detailed Description

Definition at line 628 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::ColumnRef::ColumnRef ( std::string *  n1)
inlineexplicit

Definition at line 630 of file ParserNode.h.

630 : table_(nullptr), column_(n1) {}
std::unique_ptr< std::string > table_
Definition: ParserNode.h:641
std::unique_ptr< std::string > column_
Definition: ParserNode.h:642
Parser::ColumnRef::ColumnRef ( std::string *  n1,
std::string *  n2 
)
inline

Definition at line 631 of file ParserNode.h.

631 : table_(n1), column_(n2) {}
std::unique_ptr< std::string > table_
Definition: ParserNode.h:641
std::unique_ptr< std::string > column_
Definition: ParserNode.h:642

Member Function Documentation

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

Implements Parser::Expr.

Definition at line 888 of file ParserNode.cpp.

References Analyzer::Var::deep_copy(), Analyzer::RangeTableEntry::get_column_desc(), Analyzer::Query::get_rangetable(), Analyzer::Query::get_rte(), Analyzer::Query::get_rte_idx(), Analyzer::RangeTableEntry::get_table_id(), Analyzer::Query::get_targetlist(), Analyzer::Var::get_which_row(), Catalog_Namespace::Catalog::getDatabaseId(), Analyzer::Var::kGROUPBY, and Analyzer::Var::kOUTPUT.

891  {
892  int table_id{0};
893  int rte_idx{0};
894  const ColumnDescriptor* cd{nullptr};
895  if (column_ == nullptr) {
896  throw std::runtime_error("invalid column name *.");
897  }
898  if (table_ != nullptr) {
899  rte_idx = query.get_rte_idx(*table_);
900  if (rte_idx < 0) {
901  throw std::runtime_error("range variable or table name " + *table_ +
902  " does not exist.");
903  }
904  Analyzer::RangeTableEntry* rte = query.get_rte(rte_idx);
905  cd = rte->get_column_desc(catalog, *column_);
906  if (cd == nullptr) {
907  throw std::runtime_error("Column name " + *column_ + " does not exist.");
908  }
909  table_id = rte->get_table_id();
910  } else {
911  bool found = false;
912  int i = 0;
913  for (auto rte : query.get_rangetable()) {
914  cd = rte->get_column_desc(catalog, *column_);
915  if (cd != nullptr && !found) {
916  found = true;
917  rte_idx = i;
918  table_id = rte->get_table_id();
919  } else if (cd != nullptr && found) {
920  throw std::runtime_error("Column name " + *column_ + " is ambiguous.");
921  }
922  i++;
923  }
924  if (cd == nullptr && allow_tlist_ref != TlistRefType::TLIST_NONE) {
925  // check if this is a reference to a targetlist entry
926  bool found = false;
927  int varno = -1;
928  int i = 1;
929  std::shared_ptr<Analyzer::TargetEntry> tle;
930  for (auto p : query.get_targetlist()) {
931  if (*column_ == p->get_resname() && !found) {
932  found = true;
933  varno = i;
934  tle = p;
935  } else if (*column_ == p->get_resname() && found) {
936  throw std::runtime_error("Output alias " + *column_ + " is ambiguous.");
937  }
938  i++;
939  }
940  if (found) {
941  if (dynamic_cast<Analyzer::Var*>(tle->get_expr())) {
942  Analyzer::Var* v = static_cast<Analyzer::Var*>(tle->get_expr());
944  return v->deep_copy();
945  }
946  }
947  if (allow_tlist_ref == TlistRefType::TLIST_COPY) {
948  return tle->get_expr()->deep_copy();
949  } else {
950  return makeExpr<Analyzer::Var>(
951  tle->get_expr()->get_type_info(), Analyzer::Var::kOUTPUT, varno);
952  }
953  }
954  }
955  if (cd == nullptr) {
956  throw std::runtime_error("Column name " + *column_ + " does not exist.");
957  }
958  }
959  return makeExpr<Analyzer::ColumnVar>(
960  cd->columnType,
961  shared::ColumnKey{catalog.getDatabaseId(), table_id, cd->columnId},
962  rte_idx);
963 }
std::unique_ptr< std::string > table_
Definition: ParserNode.h:641
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:87
int32_t get_table_id() const
int get_rte_idx(const std::string &range_var_name) const
Definition: Analyzer.cpp:1495
RangeTableEntry * get_rte(int rte_idx) const
Definition: Analyzer.h:3187
WhichRow get_which_row() const
Definition: Analyzer.h:286
int getDatabaseId() const
Definition: Catalog.h:326
specifies the content in-memory of a row in the column metadata table
const ColumnDescriptor * get_column_desc(const Catalog_Namespace::Catalog &catalog, const std::string &name)
std::unique_ptr< std::string > column_
Definition: ParserNode.h:642
const std::vector< std::shared_ptr< TargetEntry > > & get_targetlist() const
Definition: Analyzer.h:3151
const std::vector< RangeTableEntry * > & get_rangetable() const
Definition: Analyzer.h:3163

+ Here is the call graph for this function:

const std::string* Parser::ColumnRef::get_column ( ) const
inline

Definition at line 633 of file ParserNode.h.

References column_.

633 { return column_.get(); }
std::unique_ptr< std::string > column_
Definition: ParserNode.h:642
const std::string* Parser::ColumnRef::get_table ( ) const
inline

Definition at line 632 of file ParserNode.h.

References table_.

632 { return table_.get(); }
std::unique_ptr< std::string > table_
Definition: ParserNode.h:641
std::string Parser::ColumnRef::to_string ( ) const
overridevirtual

Implements Parser::Expr.

Definition at line 2143 of file ParserNode.cpp.

2143  {
2144  std::string str;
2145  if (table_ == nullptr) {
2146  str = *column_;
2147  } else if (column_ == nullptr) {
2148  str = *table_ + ".*";
2149  } else {
2150  str = *table_ + "." + *column_;
2151  }
2152  return str;
2153 }
std::unique_ptr< std::string > table_
Definition: ParserNode.h:641
std::unique_ptr< std::string > column_
Definition: ParserNode.h:642

Member Data Documentation

std::unique_ptr<std::string> Parser::ColumnRef::column_
private

Definition at line 642 of file ParserNode.h.

Referenced by get_column().

std::unique_ptr<std::string> Parser::ColumnRef::table_
private

Definition at line 641 of file ParserNode.h.

Referenced by get_table().


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