Packages

An Elixir DuckDB library

Current section

Files

Jump to
exduckdb c_src duckdb src planner binder statement bind_vacuum.cpp
Raw

c_src/duckdb/src/planner/binder/statement/bind_vacuum.cpp

#include "duckdb/planner/binder.hpp"
#include "duckdb/parser/statement/vacuum_statement.hpp"
#include "duckdb/planner/operator/logical_simple.hpp"
namespace duckdb {
BoundStatement Binder::Bind(VacuumStatement &stmt) {
BoundStatement result;
result.names = {"Success"};
result.types = {LogicalType::BOOLEAN};
result.plan = make_unique<LogicalSimple>(LogicalOperatorType::LOGICAL_VACUUM, move(stmt.info));
return result;
}
} // namespace duckdb