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

Function print_limit_clause

graphlite/src/ast/pretty_printer.rs:741–746  ·  view source on GitHub ↗
(limit_clause: &LimitClause, indent: usize)

Source from the content-addressed store, hash-verified

739}
740
741fn print_limit_clause(limit_clause: &LimitClause, indent: usize) {
742 debug!("{}Count: {}", get_indent(indent), limit_clause.count);
743 if let Some(offset) = limit_clause.offset {
744 debug!("{}Offset: {}", get_indent(indent), offset);
745 }
746}
747
748fn print_transaction_statement(transaction_stmt: &TransactionStatement, indent: usize) {
749 match transaction_stmt {

Callers 1

print_select_statementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected