Class Parser::CastExpr

class CastExpr : public Parser::Expr

Public Functions

CastExpr(Expr *a, SQLType *t)
std::shared_ptr<Analyzer::Expr> analyze(const Catalog_Namespace::Catalog &catalog, Analyzer::Query &query, TlistRefType allow_tlist_ref = TLIST_NONE) const
std::string to_string() const

Private Members

std::unique_ptr<Expr> arg_
std::unique_ptr<SQLType> target_type_