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

Method apply_having

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

Apply HAVING filter for post-aggregation filtering

(mut self, condition: Expression)

Source from the content-addressed store, hash-verified

551
552 /// Apply HAVING filter for post-aggregation filtering
553 pub fn apply_having(mut self, condition: Expression) -> Self {
554 self.root = LogicalNode::Having {
555 condition,
556 input: Box::new(self.root),
557 };
558 self
559 }
560
561 /// Apply projection to the plan
562 pub fn apply_projection(mut self, expressions: Vec<ProjectExpression>) -> Self {

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected