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