| 1 | #include "duckdb/execution/operator/scan/physical_dummy_scan.hpp" |
|---|---|
| 2 | |
| 3 | using namespace duckdb; |
| 4 | using namespace std; |
| 5 | |
| 6 | void PhysicalDummyScan::GetChunkInternal(ClientContext &context, DataChunk &chunk, PhysicalOperatorState *state) { |
| 7 | state->finished = true; |
| 8 | // return a single row on the first call to the dummy scan |
| 9 | chunk.SetCardinality(1); |
| 10 | } |
| 11 |