MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / apply_distinct

Method apply_distinct

graphlite/src/plan/operators/logical.rs:618–623  ·  view source on GitHub ↗

Apply DISTINCT to remove duplicates

(mut self)

Source from the content-addressed store, hash-verified

616
617 /// Apply DISTINCT to remove duplicates
618 pub fn apply_distinct(mut self) -> Self {
619 self.root = LogicalNode::Distinct {
620 input: Box::new(self.root),
621 };
622 self
623 }
624
625 /// Apply sorting to the plan
626 pub fn apply_sort(mut self, expressions: Vec<SortExpression>) -> Self {

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected