1#include "duckdb/execution/operator/scan/physical_chunk_scan.hpp"
2#include "duckdb/execution/physical_plan_generator.hpp"
3#include "duckdb/planner/operator/logical_delim_get.hpp"
4
5using namespace duckdb;
6using namespace std;
7
8unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalDelimGet &op) {
9 assert(op.children.size() == 0);
10
11 // create a PhysicalChunkScan without an owned_collection, the collection will be added later
12 auto chunk_scan = make_unique<PhysicalChunkScan>(op.types, PhysicalOperatorType::DELIM_SCAN);
13 return move(chunk_scan);
14}
15