is_window_function

Function is_window_function 

Source
pub fn is_window_function(name: &str) -> bool
Expand description

Checks if a function is a window function (e.g., ROW_NUMBER, RANK, LAG).

Window functions perform calculations across a set of rows related to the current row, without collapsing them into a single output.

The check is case-insensitive. Uses ASCII lowercase for performance since SQL function names are always ASCII.