wangyum commented on code in PR #37104: URL: https://github.com/apache/spark/pull/37104#discussion_r920726551
########## sql/core/src/test/resources/sql-tests/results/order-by-ordinal.sql.out: ########## @@ -14,19 +14,6 @@ struct<> --- !query -select * from data order by 1 desc Review Comment: Reverted it and change it to `select * from data order by 1 desc, 2;`. otherwise sometimes it fails: ``` [info] - order-by-ordinal.sql *** FAILED *** (1 second, 39 milliseconds) [info] order-by-ordinal.sql [info] Expected "3 2 [info] 3 1 [info] 2 [2 [info] 2 1] [info] 1 1 [info] 1 2", but got "3 2 [info] 3 1 [info] 2 [1 [info] 2 2] [info] 1 1 [info] 1 2" Result did not match for query #1 [info] select * from data order by 1 desc (SQLQueryTestSuite.scala:478) ``` -- 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]
