Packages

An Elixir DuckDB library

Current section

Files

Jump to
exduckdb c_src duckdb src parser statement call_statement.cpp
Raw

c_src/duckdb/src/parser/statement/call_statement.cpp

#include "duckdb/parser/statement/call_statement.hpp"
namespace duckdb {
CallStatement::CallStatement() : SQLStatement(StatementType::CALL_STATEMENT) {
}
unique_ptr<SQLStatement> CallStatement::Copy() const {
auto result = make_unique<CallStatement>();
result->function = function->Copy();
return move(result);
}
} // namespace duckdb