1#include "duckdb/execution/physical_plan_generator.hpp"
2#include "duckdb/execution/operator/persistent/physical_copy_from_file.hpp"
3#include "duckdb/planner/operator/logical_copy_from_file.hpp"
4
5using namespace duckdb;
6using namespace std;
7
8unique_ptr<PhysicalOperator> PhysicalPlanGenerator::CreatePlan(LogicalCopyFromFile &op) {
9 // COPY from file into a table
10 return make_unique<PhysicalCopyFromFile>(op, op.sql_types, move(op.info));
11}
12