Struct sqlparser::ast::LateralView
source · pub struct LateralView {
pub lateral_view: Expr,
pub lateral_view_name: ObjectName,
pub lateral_col_alias: Vec<Ident>,
pub outer: bool,
}Expand description
A hive LATERAL VIEW with potential column aliases
Fields§
§lateral_view: ExprLATERAL VIEW
lateral_view_name: ObjectNameLATERAL VIEW table name
lateral_col_alias: Vec<Ident>LATERAL VIEW optional column aliases
outer: boolLATERAL 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 more