Struct sqlparser::ast::LateralView
source · pub struct LateralView {
pub lateral_view: Expr,
pub lateral_view_name: ObjectName,
pub lateral_col_alias: Vec<Located<Ident>>,
pub outer: bool,
}
Expand description
A hive LATERAL VIEW with potential column aliases
Fields§
§lateral_view: Expr
LATERAL VIEW
lateral_view_name: ObjectName
LATERAL VIEW table name
lateral_col_alias: Vec<Located<Ident>>
LATERAL VIEW optional column aliases
outer: bool
LATERAL VIEW OUTER
Trait Implementations§
source§impl Clone for LateralView
impl Clone for LateralView
source§fn clone(&self) -> LateralView
fn clone(&self) -> LateralView
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LateralView
impl Debug for LateralView
source§impl<'de> Deserialize<'de> for LateralView
impl<'de> Deserialize<'de> for LateralView
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 Display for LateralView
impl Display for LateralView
source§impl Hash for LateralView
impl Hash for LateralView
source§impl Ord for LateralView
impl Ord for LateralView
source§fn cmp(&self, other: &LateralView) -> Ordering
fn cmp(&self, other: &LateralView) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<LateralView> for LateralView
impl PartialEq<LateralView> for LateralView
source§fn eq(&self, other: &LateralView) -> bool
fn eq(&self, other: &LateralView) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<LateralView> for LateralView
impl PartialOrd<LateralView> for LateralView
source§fn partial_cmp(&self, other: &LateralView) -> Option<Ordering>
fn partial_cmp(&self, other: &LateralView) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more