1#include "duckdb/parser/statement/call_statement.hpp"
2
3namespace duckdb {
4
5CallStatement::CallStatement() : SQLStatement(StatementType::CALL_STATEMENT) {
6}
7
8CallStatement::CallStatement(const CallStatement &other) : SQLStatement(other), function(other.function->Copy()) {
9}
10
11unique_ptr<SQLStatement> CallStatement::Copy() const {
12 return unique_ptr<CallStatement>(new CallStatement(*this));
13}
14
15} // namespace duckdb
16