dongjoon-hyun commented on a change in pull request #25816: 
[SPARK-29107][SQL][TESTS] Port window.sql (Part 1)
URL: https://github.com/apache/spark/pull/25816#discussion_r329372438
 
 

 ##########
 File path: sql/core/src/test/resources/sql-tests/inputs/pgSQL/window_part1.sql
 ##########
 @@ -187,10 +187,11 @@ sum(ten) over (partition by four order by ten range 
between unbounded preceding
 last(ten) over (partition by four order by ten range between unbounded 
preceding and unbounded following)
 FROM (select distinct ten, four from tenk1) ss;
 
-SELECT four, ten/4 as two,
-sum(ten/4) over (partition by four order by ten/4 range between unbounded 
preceding and current row),
-last(ten/4) over (partition by four order by ten/4 range between unbounded 
preceding and current row)
-FROM (select distinct ten, four from tenk1) ss;
+-- Failing on thrift server
+-- SELECT four, ten/4 as two,
+-- sum(ten/4) over (partition by four order by ten/4 range between unbounded 
preceding and current row),
+-- last(ten/4) over (partition by four order by ten/4 range between unbounded 
preceding and current row)
+-- FROM (select distinct ten, four from tenk1) ss;
 
 Review comment:
   Ur, did you regenerate the golden files after this removal?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to