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
5using namespace duckdb;
6using namespace std;
7
8unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalEmptyResult &op) {
9 assert(op.children.size() == 0);
10 return make_unique<PhysicalEmptyResult>(op.types);
11}
12