cloud-fan commented on code in PR #36714: URL: https://github.com/apache/spark/pull/36714#discussion_r886740530
########## sql/core/src/test/resources/sql-tests/inputs/percentiles.sql: ########## @@ -0,0 +1,208 @@ +-- Test data. +CREATE OR REPLACE TEMPORARY VIEW aggr AS SELECT * FROM VALUES +(0, 0), (0, 10), (0, 20), (0, 30), (0, 40), (1, 10), (1, 20), (2, 10), (2, 20), (2, 25), (2, 30), (3, 60), (4, null) +AS aggr(k, v); +CREATE OR REPLACE TEMPORARY VIEW basic_pays AS SELECT * FROM VALUES Review Comment: please add a blank line between SQL statements. -- 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]
