OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DeepCopyVisitor Class Reference

#include <DeepCopyVisitor.h>

+ Inheritance diagram for DeepCopyVisitor:
+ Collaboration diagram for DeepCopyVisitor:

Protected Types

using RetType = std::shared_ptr< Analyzer::Expr >
 

Protected Member Functions

RetType visitColumnVar (const Analyzer::ColumnVar *col_var) const override
 
RetType visitColumnVarTuple (const Analyzer::ExpressionTuple *col_var_tuple) const override
 
RetType visitVar (const Analyzer::Var *var) const override
 
RetType visitConstant (const Analyzer::Constant *constant) const override
 
RetType visitUOper (const Analyzer::UOper *uoper) const override
 
RetType visitBinOper (const Analyzer::BinOper *bin_oper) const override
 
RetType visitGeoExpr (const Analyzer::GeoExpr *geo_expr) const override
 
RetType visitInValues (const Analyzer::InValues *in_values) const override
 
RetType visitInIntegerSet (const Analyzer::InIntegerSet *in_integer_set) const override
 
RetType visitCharLength (const Analyzer::CharLengthExpr *char_length) const override
 
RetType visitKeyForString (const Analyzer::KeyForStringExpr *expr) const override
 
RetType visitSampleRatio (const Analyzer::SampleRatioExpr *expr) const override
 
RetType visitCardinality (const Analyzer::CardinalityExpr *cardinality) const override
 
RetType visitLikeExpr (const Analyzer::LikeExpr *like) const override
 
RetType visitRegexpExpr (const Analyzer::RegexpExpr *regexp) const override
 
RetType visitWidthBucket (const Analyzer::WidthBucketExpr *width_bucket_expr) const override
 
RetType visitCaseExpr (const Analyzer::CaseExpr *case_expr) const override
 
RetType visitDatetruncExpr (const Analyzer::DatetruncExpr *datetrunc) const override
 
RetType visitExtractExpr (const Analyzer::ExtractExpr *extract) const override
 
RetType visitArrayOper (const Analyzer::ArrayExpr *array_expr) const override
 
RetType visitGeoUOper (const Analyzer::GeoUOper *geo_expr) const override
 
RetType visitGeoBinOper (const Analyzer::GeoBinOper *geo_expr) const override
 
RetType visitWindowFunction (const Analyzer::WindowFunction *window_func) const override
 
RetType visitStringOper (const Analyzer::StringOper *string_oper) const override
 
RetType visitFunctionOper (const Analyzer::FunctionOper *func_oper) const override
 
RetType visitDatediffExpr (const Analyzer::DatediffExpr *datediff) const override
 
RetType visitDateaddExpr (const Analyzer::DateaddExpr *dateadd) const override
 
RetType visitFunctionOperWithCustomTypeHandling (const Analyzer::FunctionOperWithCustomTypeHandling *func_oper) const override
 
RetType visitLikelihood (const Analyzer::LikelihoodExpr *likelihood) const override
 
RetType visitAggExpr (const Analyzer::AggExpr *agg) const override
 
RetType visitOffsetInFragment (const Analyzer::OffsetInFragment *) const override
 
- Protected Member Functions inherited from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >
virtual std::shared_ptr
< Analyzer::Expr
visitRangeJoinOper (const Analyzer::RangeOper *range_oper) const
 
virtual std::shared_ptr
< Analyzer::Expr
aggregateResult (const std::shared_ptr< Analyzer::Expr > &aggregate, const std::shared_ptr< Analyzer::Expr > &next_result) const
 
virtual void visitBegin () const
 
virtual std::shared_ptr
< Analyzer::Expr
defaultResult () const
 

Additional Inherited Members

- Public Member Functions inherited from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >
std::shared_ptr< Analyzer::Exprvisit (const Analyzer::Expr *expr) const
 

Detailed Description

Definition at line 19 of file DeepCopyVisitor.h.

Member Typedef Documentation

using DeepCopyVisitor::RetType = std::shared_ptr<Analyzer::Expr>
protected

Definition at line 21 of file DeepCopyVisitor.h.

Member Function Documentation

RetType DeepCopyVisitor::visitAggExpr ( const Analyzer::AggExpr agg) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 248 of file DeepCopyVisitor.h.

References Analyzer::AggExpr::get_aggtype(), Analyzer::AggExpr::get_arg(), Analyzer::AggExpr::get_arg1(), Analyzer::AggExpr::get_is_distinct(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

248  {
249  RetType arg = agg->get_arg() ? visit(agg->get_arg()) : nullptr;
250  return makeExpr<Analyzer::AggExpr>(agg->get_type_info(),
251  agg->get_aggtype(),
252  arg,
253  agg->get_is_distinct(),
254  agg->get_arg1());
255  }
Expr * get_arg() const
Definition: Analyzer.h:1208
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
std::shared_ptr< Analyzer::Expr > RetType
bool get_is_distinct() const
Definition: Analyzer.h:1210
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
std::shared_ptr< Analyzer::Expr > get_arg1() const
Definition: Analyzer.h:1211
SQLAgg get_aggtype() const
Definition: Analyzer.h:1207

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitArrayOper ( const Analyzer::ArrayExpr array_expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Reimplemented in anonymous_namespace{ExpressionRewrite.cpp}::ArrayElementStringLiteralEncodingVisitor.

Definition at line 142 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_type_info(), Analyzer::ArrayExpr::getElement(), Analyzer::ArrayExpr::getElementCount(), Analyzer::ArrayExpr::isLocalAlloc(), Analyzer::ArrayExpr::isNull(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

142  {
143  std::vector<std::shared_ptr<Analyzer::Expr>> args_copy;
144  for (size_t i = 0; i < array_expr->getElementCount(); ++i) {
145  args_copy.push_back(visit(array_expr->getElement(i)));
146  }
147  const auto& type_info = array_expr->get_type_info();
148  return makeExpr<Analyzer::ArrayExpr>(
149  type_info, args_copy, array_expr->isNull(), array_expr->isLocalAlloc());
150  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
bool isNull() const
Definition: Analyzer.h:2669
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
size_t getElementCount() const
Definition: Analyzer.h:2667
bool isLocalAlloc() const
Definition: Analyzer.h:2668
const Analyzer::Expr * getElement(const size_t i) const
Definition: Analyzer.h:2671

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitBinOper ( const Analyzer::BinOper bin_oper) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Reimplemented in anonymous_namespace{ExpressionRewrite.cpp}::ConstantFoldingVisitor, and anonymous_namespace{ExpressionRewrite.cpp}::RecursiveOrToInVisitor.

Definition at line 44 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_contains_agg(), Analyzer::BinOper::get_left_operand(), Analyzer::BinOper::get_optype(), Analyzer::BinOper::get_qualifier(), Analyzer::BinOper::get_right_operand(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

44  {
45  return makeExpr<Analyzer::BinOper>(bin_oper->get_type_info(),
46  bin_oper->get_contains_agg(),
47  bin_oper->get_optype(),
48  bin_oper->get_qualifier(),
49  visit(bin_oper->get_left_operand()),
50  visit(bin_oper->get_right_operand()));
51  }
const Expr * get_right_operand() const
Definition: Analyzer.h:456
bool get_contains_agg() const
Definition: Analyzer.h:81
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
SQLOps get_optype() const
Definition: Analyzer.h:452
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Expr * get_left_operand() const
Definition: Analyzer.h:455
SQLQualifier get_qualifier() const
Definition: Analyzer.h:454

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitCardinality ( const Analyzer::CardinalityExpr cardinality) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 86 of file DeepCopyVisitor.h.

References Analyzer::CardinalityExpr::get_arg(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

86  {
87  return makeExpr<Analyzer::CardinalityExpr>(visit(cardinality->get_arg()));
88  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_arg() const
Definition: Analyzer.h:855

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitCaseExpr ( const Analyzer::CaseExpr case_expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 115 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_contains_agg(), Analyzer::CaseExpr::get_else_expr(), Analyzer::CaseExpr::get_expr_pair_list(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

115  {
116  std::list<std::pair<RetType, RetType>> new_list;
117  for (auto p : case_expr->get_expr_pair_list()) {
118  new_list.emplace_back(visit(p.first.get()), visit(p.second.get()));
119  }
120  auto else_expr = case_expr->get_else_expr();
121  return makeExpr<Analyzer::CaseExpr>(
122  case_expr->get_type_info(),
123  case_expr->get_contains_agg(),
124  new_list,
125  else_expr == nullptr ? nullptr : visit(else_expr));
126  }
const Expr * get_else_expr() const
Definition: Analyzer.h:1265
bool get_contains_agg() const
Definition: Analyzer.h:81
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const std::list< std::pair< std::shared_ptr< Analyzer::Expr >, std::shared_ptr< Analyzer::Expr > > > & get_expr_pair_list() const
Definition: Analyzer.h:1262

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitCharLength ( const Analyzer::CharLengthExpr char_length) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 73 of file DeepCopyVisitor.h.

References Analyzer::CharLengthExpr::get_arg(), Analyzer::CharLengthExpr::get_calc_encoded_length(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

73  {
74  return makeExpr<Analyzer::CharLengthExpr>(visit(char_length->get_arg()),
75  char_length->get_calc_encoded_length());
76  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
bool get_calc_encoded_length() const
Definition: Analyzer.h:718
const Expr * get_arg() const
Definition: Analyzer.h:716

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitColumnVar ( const Analyzer::ColumnVar col_var) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Reimplemented in anonymous_namespace{JoinFilterPushDown.cpp}::BindFilterToOutermostVisitor.

Definition at line 22 of file DeepCopyVisitor.h.

References Analyzer::ColumnVar::deep_copy().

22  {
23  return col_var->deep_copy();
24  }
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:66

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitColumnVarTuple ( const Analyzer::ExpressionTuple col_var_tuple) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 26 of file DeepCopyVisitor.h.

References Analyzer::ExpressionTuple::deep_copy().

27  {
28  return col_var_tuple->deep_copy();
29  }
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:76

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitConstant ( const Analyzer::Constant constant) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 33 of file DeepCopyVisitor.h.

References Analyzer::Constant::deep_copy().

33  {
34  return constant->deep_copy();
35  }
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:91

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitDateaddExpr ( const Analyzer::DateaddExpr dateadd) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 225 of file DeepCopyVisitor.h.

References Analyzer::DateaddExpr::get_datetime_expr(), Analyzer::DateaddExpr::get_field(), Analyzer::DateaddExpr::get_number_expr(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

225  {
226  return makeExpr<Analyzer::DateaddExpr>(dateadd->get_type_info(),
227  dateadd->get_field(),
228  visit(dateadd->get_number_expr()),
229  visit(dateadd->get_datetime_expr()));
230  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Expr * get_datetime_expr() const
Definition: Analyzer.h:1356
DateaddField get_field() const
Definition: Analyzer.h:1354
const Expr * get_number_expr() const
Definition: Analyzer.h:1355

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitDatediffExpr ( const Analyzer::DatediffExpr datediff) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 218 of file DeepCopyVisitor.h.

References Analyzer::DatediffExpr::get_end_expr(), Analyzer::DatediffExpr::get_field(), Analyzer::DatediffExpr::get_start_expr(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

218  {
219  return makeExpr<Analyzer::DatediffExpr>(datediff->get_type_info(),
220  datediff->get_field(),
221  visit(datediff->get_start_expr()),
222  visit(datediff->get_end_expr()));
223  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_start_expr() const
Definition: Analyzer.h:1403
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Expr * get_end_expr() const
Definition: Analyzer.h:1404
DatetruncField get_field() const
Definition: Analyzer.h:1402

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitDatetruncExpr ( const Analyzer::DatetruncExpr datetrunc) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 128 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_contains_agg(), Analyzer::DatetruncExpr::get_field(), Analyzer::DatetruncExpr::get_from_expr(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

128  {
129  return makeExpr<Analyzer::DatetruncExpr>(datetrunc->get_type_info(),
130  datetrunc->get_contains_agg(),
131  datetrunc->get_field(),
132  visit(datetrunc->get_from_expr()));
133  }
bool get_contains_agg() const
Definition: Analyzer.h:81
DatetruncField get_field() const
Definition: Analyzer.h:1444
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Expr * get_from_expr() const
Definition: Analyzer.h:1445

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitExtractExpr ( const Analyzer::ExtractExpr extract) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 135 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_contains_agg(), Analyzer::ExtractExpr::get_field(), Analyzer::ExtractExpr::get_from_expr(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

135  {
136  return makeExpr<Analyzer::ExtractExpr>(extract->get_type_info(),
137  extract->get_contains_agg(),
138  extract->get_field(),
139  visit(extract->get_from_expr()));
140  }
const Expr * get_from_expr() const
Definition: Analyzer.h:1310
ExtractField get_field() const
Definition: Analyzer.h:1309
bool get_contains_agg() const
Definition: Analyzer.h:81
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitFunctionOper ( const Analyzer::FunctionOper func_oper) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 209 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_type_info(), Analyzer::FunctionOper::getArg(), Analyzer::FunctionOper::getArity(), Analyzer::FunctionOper::getName(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

209  {
210  std::vector<std::shared_ptr<Analyzer::Expr>> args_copy;
211  for (size_t i = 0; i < func_oper->getArity(); ++i) {
212  args_copy.push_back(visit(func_oper->getArg(i)));
213  }
214  const auto& type_info = func_oper->get_type_info();
215  return makeExpr<Analyzer::FunctionOper>(type_info, func_oper->getName(), args_copy);
216  }
size_t getArity() const
Definition: Analyzer.h:2408
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Analyzer::Expr * getArg(const size_t i) const
Definition: Analyzer.h:2410
std::string getName() const
Definition: Analyzer.h:2406

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitFunctionOperWithCustomTypeHandling ( const Analyzer::FunctionOperWithCustomTypeHandling func_oper) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 232 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_type_info(), Analyzer::FunctionOper::getArg(), Analyzer::FunctionOper::getArity(), Analyzer::FunctionOper::getName(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

233  {
234  std::vector<std::shared_ptr<Analyzer::Expr>> args_copy;
235  for (size_t i = 0; i < func_oper->getArity(); ++i) {
236  args_copy.push_back(visit(func_oper->getArg(i)));
237  }
238  const auto& type_info = func_oper->get_type_info();
239  return makeExpr<Analyzer::FunctionOperWithCustomTypeHandling>(
240  type_info, func_oper->getName(), args_copy);
241  }
size_t getArity() const
Definition: Analyzer.h:2408
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Analyzer::Expr * getArg(const size_t i) const
Definition: Analyzer.h:2410
std::string getName() const
Definition: Analyzer.h:2406

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitGeoBinOper ( const Analyzer::GeoBinOper geo_expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 162 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_type_info(), Analyzer::GeoBinOper::getArgs0(), Analyzer::GeoBinOper::getArgs1(), Analyzer::GeoBinOper::getOp(), Analyzer::GeoBinOper::getTypeInfo0(), Analyzer::GeoBinOper::getTypeInfo1(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

162  {
163  std::vector<std::shared_ptr<Analyzer::Expr>> args0_copy;
164  for (const auto& arg : geo_expr->getArgs0()) {
165  args0_copy.push_back(visit(arg.get()));
166  }
167  std::vector<std::shared_ptr<Analyzer::Expr>> args1_copy;
168  for (const auto& arg : geo_expr->getArgs1()) {
169  args1_copy.push_back(visit(arg.get()));
170  }
171  const auto& ti0 = geo_expr->getTypeInfo0();
172  const auto& ti1 = geo_expr->getTypeInfo1();
173  const auto& type_info = geo_expr->get_type_info();
174  return makeExpr<Analyzer::GeoBinOper>(
175  geo_expr->getOp(), type_info, ti0, ti1, args0_copy, args1_copy);
176  }
const SQLTypeInfo getTypeInfo0() const
Definition: Analyzer.h:2735
const std::vector< std::shared_ptr< Analyzer::Expr > > & getArgs0() const
Definition: Analyzer.h:2737
const SQLTypeInfo getTypeInfo1() const
Definition: Analyzer.h:2736
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
Geospatial::GeoBase::GeoOp getOp() const
Definition: Analyzer.h:2734
const std::vector< std::shared_ptr< Analyzer::Expr > > & getArgs1() const
Definition: Analyzer.h:2738

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitGeoExpr ( const Analyzer::GeoExpr geo_expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 53 of file DeepCopyVisitor.h.

References Analyzer::Expr::deep_copy().

53  {
54  return geo_expr->deep_copy();
55  }
virtual std::shared_ptr< Analyzer::Expr > deep_copy() const =0

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitGeoUOper ( const Analyzer::GeoUOper geo_expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 152 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_type_info(), Analyzer::GeoUOper::getArgs0(), Analyzer::GeoUOper::getOp(), Analyzer::GeoUOper::getTypeInfo0(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

152  {
153  std::vector<std::shared_ptr<Analyzer::Expr>> args0_copy;
154  for (const auto& arg : geo_expr->getArgs0()) {
155  args0_copy.push_back(visit(arg.get()));
156  }
157  const auto& ti0 = geo_expr->getTypeInfo0();
158  const auto& type_info = geo_expr->get_type_info();
159  return makeExpr<Analyzer::GeoUOper>(geo_expr->getOp(), type_info, ti0, args0_copy);
160  }
const SQLTypeInfo getTypeInfo0() const
Definition: Analyzer.h:2706
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const std::vector< std::shared_ptr< Analyzer::Expr > > & getArgs0() const
Definition: Analyzer.h:2707
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
Geospatial::GeoBase::GeoOp getOp() const
Definition: Analyzer.h:2705

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitInIntegerSet ( const Analyzer::InIntegerSet in_integer_set) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 66 of file DeepCopyVisitor.h.

References Analyzer::InIntegerSet::get_arg(), SQLTypeInfo::get_notnull(), Analyzer::Expr::get_type_info(), Analyzer::InIntegerSet::get_value_list(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

66  {
67  return makeExpr<Analyzer::InIntegerSet>(
68  visit(in_integer_set->get_arg()),
69  in_integer_set->get_value_list(),
70  in_integer_set->get_type_info().get_notnull());
71  }
const std::vector< int64_t > & get_value_list() const
Definition: Analyzer.h:695
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Expr * get_arg() const
Definition: Analyzer.h:693
HOST DEVICE bool get_notnull() const
Definition: sqltypes.h:388

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitInValues ( const Analyzer::InValues in_values) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 57 of file DeepCopyVisitor.h.

References Analyzer::InValues::get_arg(), Analyzer::InValues::get_value_list(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

57  {
58  const auto& value_list = in_values->get_value_list();
59  std::list<RetType> new_list;
60  for (const auto& in_value : value_list) {
61  new_list.push_back(visit(in_value.get()));
62  }
63  return makeExpr<Analyzer::InValues>(visit(in_values->get_arg()), new_list);
64  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const std::list< std::shared_ptr< Analyzer::Expr > > & get_value_list() const
Definition: Analyzer.h:646
const Expr * get_arg() const
Definition: Analyzer.h:644

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitKeyForString ( const Analyzer::KeyForStringExpr expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 78 of file DeepCopyVisitor.h.

References Analyzer::KeyForStringExpr::get_arg(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

78  {
79  return makeExpr<Analyzer::KeyForStringExpr>(visit(expr->get_arg()));
80  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_arg() const
Definition: Analyzer.h:765

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitLikeExpr ( const Analyzer::LikeExpr like) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 90 of file DeepCopyVisitor.h.

References Analyzer::LikeExpr::get_arg(), Analyzer::LikeExpr::get_escape_expr(), Analyzer::LikeExpr::get_is_ilike(), Analyzer::LikeExpr::get_is_simple(), Analyzer::LikeExpr::get_like_expr(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

90  {
91  auto escape_expr = like->get_escape_expr();
92  return makeExpr<Analyzer::LikeExpr>(visit(like->get_arg()),
93  visit(like->get_like_expr()),
94  escape_expr ? visit(escape_expr) : nullptr,
95  like->get_is_ilike(),
96  like->get_is_simple());
97  }
const Expr * get_escape_expr() const
Definition: Analyzer.h:912
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_arg() const
Definition: Analyzer.h:909
const Expr * get_like_expr() const
Definition: Analyzer.h:911

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitLikelihood ( const Analyzer::LikelihoodExpr likelihood) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 243 of file DeepCopyVisitor.h.

References Analyzer::LikelihoodExpr::get_arg(), Analyzer::LikelihoodExpr::get_likelihood(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

243  {
244  return makeExpr<Analyzer::LikelihoodExpr>(visit(likelihood->get_arg()),
245  likelihood->get_likelihood());
246  }
float get_likelihood() const
Definition: Analyzer.h:1147
const Expr * get_arg() const
Definition: Analyzer.h:1145
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitOffsetInFragment ( const Analyzer::OffsetInFragment ) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 257 of file DeepCopyVisitor.h.

257  {
258  return makeExpr<Analyzer::OffsetInFragment>();
259  }
RetType DeepCopyVisitor::visitRegexpExpr ( const Analyzer::RegexpExpr regexp) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 99 of file DeepCopyVisitor.h.

References Analyzer::RegexpExpr::get_arg(), Analyzer::RegexpExpr::get_escape_expr(), Analyzer::RegexpExpr::get_pattern_expr(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

99  {
100  auto escape_expr = regexp->get_escape_expr();
101  return makeExpr<Analyzer::RegexpExpr>(visit(regexp->get_arg()),
102  visit(regexp->get_pattern_expr()),
103  escape_expr ? visit(escape_expr) : nullptr);
104  }
const Expr * get_escape_expr() const
Definition: Analyzer.h:984
const Expr * get_arg() const
Definition: Analyzer.h:981
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_pattern_expr() const
Definition: Analyzer.h:983

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitSampleRatio ( const Analyzer::SampleRatioExpr expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 82 of file DeepCopyVisitor.h.

References Analyzer::SampleRatioExpr::get_arg(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

82  {
83  return makeExpr<Analyzer::SampleRatioExpr>(visit(expr->get_arg()));
84  }
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_arg() const
Definition: Analyzer.h:810

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitStringOper ( const Analyzer::StringOper string_oper) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Reimplemented in anonymous_namespace{ExpressionRewrite.cpp}::ConstantFoldingVisitor.

Definition at line 205 of file DeepCopyVisitor.h.

References Analyzer::StringOper::deep_copy().

205  {
206  return string_oper->deep_copy();
207  }
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:3530

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitUOper ( const Analyzer::UOper uoper) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Reimplemented in anonymous_namespace{ExpressionRewrite.cpp}::ConstantFoldingVisitor.

Definition at line 37 of file DeepCopyVisitor.h.

References Analyzer::Expr::get_contains_agg(), Analyzer::UOper::get_operand(), Analyzer::UOper::get_optype(), Analyzer::Expr::get_type_info(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

37  {
38  return makeExpr<Analyzer::UOper>(uoper->get_type_info(),
39  uoper->get_contains_agg(),
40  uoper->get_optype(),
41  visit(uoper->get_operand()));
42  }
bool get_contains_agg() const
Definition: Analyzer.h:81
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
const Expr * get_operand() const
Definition: Analyzer.h:384
SQLOps get_optype() const
Definition: Analyzer.h:383

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitVar ( const Analyzer::Var var) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 31 of file DeepCopyVisitor.h.

References Analyzer::Var::deep_copy().

31 { return var->deep_copy(); }
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:87

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitWidthBucket ( const Analyzer::WidthBucketExpr width_bucket_expr) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 106 of file DeepCopyVisitor.h.

References Analyzer::WidthBucketExpr::get_lower_bound(), Analyzer::WidthBucketExpr::get_partition_count(), Analyzer::WidthBucketExpr::get_target_value(), Analyzer::WidthBucketExpr::get_upper_bound(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

107  {
108  return makeExpr<Analyzer::WidthBucketExpr>(
109  visit(width_bucket_expr->get_target_value()),
110  visit(width_bucket_expr->get_lower_bound()),
111  visit(width_bucket_expr->get_upper_bound()),
112  visit(width_bucket_expr->get_partition_count()));
113  }
const Expr * get_partition_count() const
Definition: Analyzer.h:1049
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Expr * get_target_value() const
Definition: Analyzer.h:1046
const Expr * get_lower_bound() const
Definition: Analyzer.h:1047
const Expr * get_upper_bound() const
Definition: Analyzer.h:1048

+ Here is the call graph for this function:

RetType DeepCopyVisitor::visitWindowFunction ( const Analyzer::WindowFunction window_func) const
inlineoverrideprotectedvirtual

Reimplemented from ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >.

Definition at line 178 of file DeepCopyVisitor.h.

References Analyzer::WindowFrame::deep_copy(), Analyzer::Expr::get_type_info(), Analyzer::WindowFunction::getArgs(), Analyzer::WindowFunction::getCollation(), Analyzer::WindowFunction::getFrameBoundType(), Analyzer::WindowFunction::getFrameEndBound(), Analyzer::WindowFunction::getFrameStartBound(), Analyzer::WindowFunction::getKind(), Analyzer::WindowFunction::getOrderKeys(), Analyzer::WindowFunction::getPartitionKeys(), and ScalarExprVisitor< std::shared_ptr< Analyzer::Expr > >::visit().

179  {
180  std::vector<std::shared_ptr<Analyzer::Expr>> args_copy;
181  for (const auto& arg : window_func->getArgs()) {
182  args_copy.push_back(visit(arg.get()));
183  }
184  std::vector<std::shared_ptr<Analyzer::Expr>> partition_keys_copy;
185  for (const auto& partition_key : window_func->getPartitionKeys()) {
186  partition_keys_copy.push_back(visit(partition_key.get()));
187  }
188  std::vector<std::shared_ptr<Analyzer::Expr>> order_keys_copy;
189  for (const auto& order_key : window_func->getOrderKeys()) {
190  order_keys_copy.push_back(visit(order_key.get()));
191  }
192  const auto& type_info = window_func->get_type_info();
193  return makeExpr<Analyzer::WindowFunction>(
194  type_info,
195  window_func->getKind(),
196  args_copy,
197  partition_keys_copy,
198  order_keys_copy,
199  window_func->getFrameBoundType(),
200  window_func->getFrameStartBound()->deep_copy(),
201  window_func->getFrameEndBound()->deep_copy(),
202  window_func->getCollation());
203  }
SqlWindowFunctionKind getKind() const
Definition: Analyzer.h:2576
const Analyzer::WindowFrame * getFrameStartBound() const
Definition: Analyzer.h:2588
std::shared_ptr< Analyzer::Expr > visit(const Analyzer::Expr *expr) const
const Analyzer::WindowFrame * getFrameEndBound() const
Definition: Analyzer.h:2595
const std::vector< std::shared_ptr< Analyzer::Expr > > & getOrderKeys() const
Definition: Analyzer.h:2584
const std::vector< OrderEntry > & getCollation() const
Definition: Analyzer.h:2602
std::shared_ptr< Analyzer::Expr > deep_copy() const override
Definition: Analyzer.cpp:217
const std::vector< std::shared_ptr< Analyzer::Expr > > & getArgs() const
Definition: Analyzer.h:2578
const SQLTypeInfo & get_type_info() const
Definition: Analyzer.h:79
Analyzer::WindowFunction::FrameBoundType getFrameBoundType() const
Definition: Analyzer.h:2604
const std::vector< std::shared_ptr< Analyzer::Expr > > & getPartitionKeys() const
Definition: Analyzer.h:2580

+ Here is the call graph for this function:


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