jcsherin commented on code in PR #13051: URL: https://github.com/apache/datafusion/pull/13051#discussion_r1810543375
########## datafusion/sqllogictest/test_files/window.slt: ########## @@ -1135,8 +1135,8 @@ SELECT query IRR SELECT c8, - CUME_DIST() OVER(ORDER BY c9) as cd1, - CUME_DIST() OVER(ORDER BY c9 ROWS BETWEEN 10 PRECEDING and 1 FOLLOWING) as cd2 + cume_dist() OVER(ORDER BY c9) as cd1, + cume_dist() OVER(ORDER BY c9 ROWS BETWEEN 10 PRECEDING and 1 FOLLOWING) as cd2 Review Comment: It is consistent with conversion of other user-defined window functions. -- 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]
