Apply deduplication: Only distinct (different) values are returned)
(self)
| 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. |