MCPcopy Create free account
hub / github.com/apache/datafusion / distinct

Method distinct

datafusion/expr/src/logical_plan/builder.rs:898–900  ·  view source on GitHub ↗

Apply deduplication: Only distinct (different) values are returned)

(self)

Source from the content-addressed store, hash-verified

896
897 /// Apply deduplication: Only distinct (different) values are returned)
898 pub fn distinct(self) -> Result<Self> {
899 Ok(Self::new(LogicalPlan::Distinct(Distinct::All(self.plan))))
900 }
901
902 /// Project first values of the specified expression list according to the provided
903 /// sorting expressions grouped by the `DISTINCT ON` clause expressions.

Callers 2

intersect_or_exceptMethod · 0.45

Calls 2

newFunction · 0.85
DistinctEnum · 0.85

Tested by 1