Check if a function is a window function.
(&self, name: &str)
| 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 | |
| 141 | impl Default for FunctionRegistry { |