pub struct OptionalMatchExec {
pub input: PhysicalNodeId,
pub inner: PhysicalNodeId,
pub new_vars: Vec<VarId>,
}Expand description
Left-outer-join: for each input row, runs inner sub-plan. If inner produces nothing, emits one row with nulls for new_vars.
Fields§
§input: PhysicalNodeId§inner: PhysicalNodeId§new_vars: Vec<VarId>Trait Implementations§
Source§impl Clone for OptionalMatchExec
impl Clone for OptionalMatchExec
Source§fn clone(&self) -> OptionalMatchExec
fn clone(&self) -> OptionalMatchExec
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for OptionalMatchExec
impl RefUnwindSafe for OptionalMatchExec
impl Send for OptionalMatchExec
impl Sync for OptionalMatchExec
impl Unpin for OptionalMatchExec
impl UnsafeUnpin for OptionalMatchExec
impl UnwindSafe for OptionalMatchExec
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