MCPcopy Create free account
hub / github.com/duckdb/duckdb / Copy

Method Copy

src/function/scalar_macro_function.cpp:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24unique_ptr<MacroFunction> ScalarMacroFunction::Copy() const {
25 auto result = make_uniq<ScalarMacroFunction>();
26 result->expression = expression->Copy();
27 CopyProperties(*result);
28
29 return std::move(result);
30}
31
32void RemoveQualificationRecursive(unique_ptr<ParsedExpression> &root_expr) {
33 ParsedExpressionIterator::VisitExpressionMutable<ColumnRefExpression>(

Callers 1

ToSQLMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected