Join in sqlparser::ast - Rust

Skip to main content

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: TableFactor

The joined table factor (table reference or derived table).

§global: bool

ClickHouse supports the optional GLOBAL keyword before the join operator. See ClickHouse

§join_operator: JoinOperator

The join operator and its constraint (INNER/LEFT/RIGHT/CROSS/ASOF/etc.).

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for Join

§

impl RefUnwindSafe for Join

§

impl Send for Join

§

impl Sync for Join

§

impl Unpin for Join

§

impl UnwindSafe for Join

Blanket Implementations§