1 | #include "duckdb/execution/operator/scan/physical_dummy_scan.hpp" |
---|---|
2 | #include "duckdb/execution/physical_plan_generator.hpp" |
3 | #include "duckdb/planner/operator/logical_dummy_scan.hpp" |
4 | |
5 | namespace duckdb { |
6 | |
7 | unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalDummyScan &op) { |
8 | D_ASSERT(op.children.size() == 0); |
9 | return make_uniq<PhysicalDummyScan>(args&: op.types, args&: op.estimated_cardinality); |
10 | } |
11 | |
12 | } // namespace duckdb |
13 |