1 | #include "duckdb/execution/operator/helper/physical_execute.hpp" |
---|---|
2 | |
3 | using namespace duckdb; |
4 | using namespace std; |
5 | |
6 | void PhysicalExecute::GetChunkInternal(ClientContext &context, DataChunk &chunk, PhysicalOperatorState *state_) { |
7 | assert(plan); |
8 | plan->GetChunk(context, chunk, state_); |
9 | } |
10 | |
11 | unique_ptr<PhysicalOperatorState> PhysicalExecute::GetOperatorState() { |
12 | return plan->GetOperatorState(); |
13 | } |
14 |