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"
5namespace duckdb {
6
7unique_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