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