1#include "duckdb/execution/operator/join/physical_join.hpp"
2
3using namespace duckdb;
4using namespace std;
5
6PhysicalJoin::PhysicalJoin(LogicalOperator &op, PhysicalOperatorType type, JoinType join_type)
7 : PhysicalOperator(type, op.types), type(join_type) {
8}
9