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