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