Struct partiql_logical::SubQueryExpr
source · pub struct SubQueryExpr {
pub plan: LogicalPlan<BindingsOp>,
}Expand description
Represents a sub-query expression, e.g. SELECT v.a*2 AS u FROM t AS v in
SELECT t.a, s FROM data AS t, (SELECT v.a*2 AS u FROM t AS v) AS s
Fields§
§plan: LogicalPlan<BindingsOp>Trait Implementations§
source§impl Clone for SubQueryExpr
impl Clone for SubQueryExpr
source§fn clone(&self) -> SubQueryExpr
fn clone(&self) -> SubQueryExpr
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 SubQueryExpr
impl Debug for SubQueryExpr
source§impl PartialEq<SubQueryExpr> for SubQueryExpr
impl PartialEq<SubQueryExpr> for SubQueryExpr
source§fn eq(&self, other: &SubQueryExpr) -> bool
fn eq(&self, other: &SubQueryExpr) -> bool
This method tests for
self and other values to be equal, and is used
by ==.