Current section
Files
Jump to
Current section
Files
c_src/duckdb/src/execution/physical_plan/plan_empty_result.cpp
#include "duckdb/execution/operator/scan/physical_empty_result.hpp"
#include "duckdb/execution/physical_plan_generator.hpp"
#include "duckdb/planner/operator/logical_empty_result.hpp"
namespace duckdb {
unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalEmptyResult &op) {
D_ASSERT(op.children.size() == 0);
return make_unique<PhysicalEmptyResult>(op.types, op.estimated_cardinality);
}
} // namespace duckdb