Enum datafusion_expr::logical_plan::Distinct
source · pub enum Distinct {
All(Arc<LogicalPlan>),
On(DistinctOn),
}Expand description
Removes duplicate rows from the input
Variants§
All(Arc<LogicalPlan>)
Plain DISTINCT referencing all selection expressions
On(DistinctOn)
The Postgres addition, allowing separate control over DISTINCT’d and selected columns
Implementations§
Trait Implementations§
source§impl PartialEq for Distinct
impl PartialEq for Distinct
impl Eq for Distinct
impl StructuralPartialEq for Distinct
Auto Trait Implementations§
impl Freeze for Distinct
impl !RefUnwindSafe for Distinct
impl Send for Distinct
impl Sync for Distinct
impl Unpin for Distinct
impl !UnwindSafe for Distinct
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.