andygrove commented on code in PR #13708: URL: https://github.com/apache/datafusion/pull/13708#discussion_r1878462026
########## datafusion/expr/src/expr.rs: ########## @@ -840,6 +840,12 @@ impl WindowFunction { } } +/// Find DataFusion's built-in window function by name. +#[deprecated(since = "44.0.0", note = "built-in window functions have been removed")] +pub fn find_df_window_func(_name: &str) -> Option<WindowFunctionDefinition> { + None Review Comment: That makes sense. I am moving this to draft until I can implement the feedback. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org