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