cj-zhukov commented on PR #20421: URL: https://github.com/apache/datafusion/pull/20421#issuecomment-4004180101
This PR now supports both syntaxes: ``` select quantile_cont(col0, 0.75 order by col0) from values (1, 3), (2, 2), (3, 1) t(col0, col1); select quantile_cont(0.75 order by col0) from values (1, 3), (2, 2), (3, 1) t(col0, col1); ``` What do you think about supporting both syntaxes? Happy to adjust if there is a preference to keep only one form. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
