MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / is_window

Method is_window

nodedb-sql/src/functions/registry.rs:135–138  ·  view source on GitHub ↗

Check if a function is a window function.

(&self, name: &str)

Source from the content-addressed store, hash-verified

133
134 /// Check if a function is a window function.
135 pub fn is_window(&self, name: &str) -> bool {
136 self.lookup(name)
137 .is_some_and(|f| f.category == FunctionCategory::Window)
138 }
139}
140
141impl Default for FunctionRegistry {

Callers

nothing calls this directly

Calls 1

lookupMethod · 0.45

Tested by

no test coverage detected