| 1 | #include "duckdb/execution/physical_plan_generator.hpp" |
|---|---|
| 2 | #include "duckdb/planner/operator/logical_pragma.hpp" |
| 3 | |
| 4 | #include "duckdb/execution/operator/helper/physical_pragma.hpp" |
| 5 | namespace duckdb { |
| 6 | |
| 7 | unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalPragma &op) { |
| 8 | return make_uniq<PhysicalPragma>(args&: op.function, args&: op.info, args&: op.estimated_cardinality); |
| 9 | } |
| 10 | |
| 11 | } // namespace duckdb |
| 12 |