1#include "duckdb/execution/operator/schema/physical_create_view.hpp"
2#include "duckdb/catalog/catalog.hpp"
3
4using namespace duckdb;
5using namespace std;
6
7void PhysicalCreateView::GetChunkInternal(ClientContext &context, DataChunk &chunk, PhysicalOperatorState *state) {
8 Catalog::GetCatalog(context).CreateView(context, info.get());
9 state->finished = true;
10}
11