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

Function print_group_clause

graphlite/src/ast/pretty_printer.rs:703–713  ·  view source on GitHub ↗
(group_clause: &GroupClause, indent: usize)

Source from the content-addressed store, hash-verified

701}
702
703fn print_group_clause(group_clause: &GroupClause, indent: usize) {
704 debug!(
705 "{}Expressions ({})",
706 get_indent(indent),
707 group_clause.expressions.len()
708 );
709 for (i, expr) in group_clause.expressions.iter().enumerate() {
710 debug!("{}Expression {}", get_indent(indent + 1), i);
711 print_expression(expr, indent + 2);
712 }
713}
714
715fn print_having_clause(having_clause: &HavingClause, indent: usize) {
716 debug!("{}Condition", get_indent(indent));

Callers 1

print_select_statementFunction · 0.85

Calls 2

print_expressionFunction · 0.85
iterMethod · 0.45

Tested by

no test coverage detected