| 1 | #include "duckdb/execution/operator/helper/physical_vacuum.hpp" |
|---|---|
| 2 | #include "duckdb/main/client_context.hpp" |
| 3 | |
| 4 | using namespace duckdb; |
| 5 | using namespace std; |
| 6 | |
| 7 | void PhysicalVacuum::GetChunkInternal(ClientContext &context, DataChunk &chunk, PhysicalOperatorState *state) { |
| 8 | // NOP |
| 9 | state->finished = true; |
| 10 | } |
| 11 |