MCPcopy Create free account
hub / github.com/apache/datafusion / print_aggregate_docs

Function print_aggregate_docs

datafusion/core/src/bin/print_functions_docs.rs:58–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

56}
57
58fn print_aggregate_docs() -> Result<String> {
59 let mut providers: Vec<Box<dyn DocProvider>> = vec![];
60
61 for f in SessionStateDefaults::default_aggregate_functions() {
62 providers.push(Box::new(f.as_ref().clone()));
63 }
64
65 print_docs(providers, aggregate_doc_sections::doc_sections())
66}
67
68fn print_scalar_docs() -> Result<String> {
69 let mut providers: Vec<Box<dyn DocProvider>> = vec![];

Callers 1

mainFunction · 0.85

Calls 6

newFunction · 0.85
print_docsFunction · 0.85
doc_sectionsFunction · 0.50
pushMethod · 0.45
cloneMethod · 0.45
as_refMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…