pub struct Join {
pub relation: TableFactor,
pub global: bool,
pub join_operator: JoinOperator,
}Expand description
A single JOIN clause including relation and join operator/options.
Fields§
§relation: TableFactorThe joined table factor (table reference or derived table).
§global: boolClickHouse supports the optional GLOBAL keyword before the join operator.
See ClickHouse
join_operator: JoinOperatorThe join operator and its constraint (INNER/LEFT/RIGHT/CROSS/ASOF/etc.).