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 ==
.impl Eq for SubQueryExpr
impl StructuralEq for SubQueryExpr
impl StructuralPartialEq for SubQueryExpr
Auto Trait Implementations§
impl RefUnwindSafe for SubQueryExpr
impl Send for SubQueryExpr
impl Sync for SubQueryExpr
impl Unpin for SubQueryExpr
impl UnwindSafe for SubQueryExpr
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