Packages

An Elixir DuckDB library

Current section

Files

Jump to
exduckdb c_src duckdb src execution operator join physical_join.cpp
Raw

c_src/duckdb/src/execution/operator/join/physical_join.cpp

#include "duckdb/execution/operator/join/physical_join.hpp"
namespace duckdb {
PhysicalJoin::PhysicalJoin(LogicalOperator &op, PhysicalOperatorType type, JoinType join_type,
idx_t estimated_cardinality)
: PhysicalOperator(type, op.types, estimated_cardinality), join_type(join_type) {
}
bool PhysicalJoin::EmptyResultIfRHSIsEmpty() const {
// empty RHS with INNER, RIGHT or SEMI join means empty result set
switch (join_type) {
case JoinType::INNER:
case JoinType::RIGHT:
case JoinType::SEMI:
return true;
default:
return false;
}
}
} // namespace duckdb