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

Function print_from_clause

graphlite/src/ast/pretty_printer.rs:663–673  ·  view source on GitHub ↗
(from_clause: &FromClause, indent: usize)

Source from the content-addressed store, hash-verified

661}
662
663fn print_from_clause(from_clause: &FromClause, indent: usize) {
664 debug!(
665 "{}Graph Expressions ({})",
666 get_indent(indent),
667 from_clause.graph_expressions.len()
668 );
669 for (i, graph_expr) in from_clause.graph_expressions.iter().enumerate() {
670 debug!("{}GraphExpression {}", get_indent(indent + 1), i);
671 print_from_graph_expression(graph_expr, indent + 2);
672 }
673}
674
675fn print_from_graph_expression(graph_expr: &FromGraphExpression, indent: usize) {
676 debug!("{}Graph Expression", get_indent(indent));

Callers 1

print_select_statementFunction · 0.85

Calls 2

iterMethod · 0.45

Tested by

no test coverage detected