1 | #include "duckdb/execution/physical_plan_generator.hpp" |
---|---|
2 | #include "duckdb/planner/operator/logical_set.hpp" |
3 | #include "duckdb/execution/operator/helper/physical_set.hpp" |
4 | |
5 | namespace duckdb { |
6 | |
7 | unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalSet &op) { |
8 | return make_uniq<PhysicalSet>(args&: op.name, args&: op.value, args&: op.scope, args&: op.estimated_cardinality); |
9 | } |
10 | |
11 | } // namespace duckdb |
12 |