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.).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Join
impl<'de> Deserialize<'de> for Join
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Join
impl Ord for Join
Source§impl PartialOrd for Join
impl PartialOrd for Join
Source§impl VisitMut for Join
impl VisitMut for Join
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for Join
impl StructuralPartialEq for Join
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more