From a1e829c73126a004f21061b6f486096adda11258 Mon Sep 17 00:00:00 2001 From: huaxingao Date: Mon, 29 Jul 2024 11:03:33 -0700 Subject: [PATCH] uncomment tests --- .../test/scala/org/apache/comet/exec/CometExecSuite.scala | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spark/src/test/scala/org/apache/comet/exec/CometExecSuite.scala b/spark/src/test/scala/org/apache/comet/exec/CometExecSuite.scala index e02c55df5..ab306aeeb 100644 --- a/spark/src/test/scala/org/apache/comet/exec/CometExecSuite.scala +++ b/spark/src/test/scala/org/apache/comet/exec/CometExecSuite.scala @@ -1769,10 +1769,9 @@ class CometExecSuite extends CometTestBase { aggregateFunctions.foreach { function => val queries = Seq( s"SELECT $function OVER() FROM t1", - // TODO: Range frame is not supported yet. - // s"SELECT $function OVER(order by _2) FROM t1", - // s"SELECT $function OVER(order by _2 desc) FROM t1", - // s"SELECT $function OVER(partition by _2 order by _2) FROM t1", + s"SELECT $function OVER(order by _2) FROM t1", + s"SELECT $function OVER(order by _2 desc) FROM t1", + s"SELECT $function OVER(partition by _2 order by _2) FROM t1", s"SELECT $function OVER(rows between 1 preceding and 1 following) FROM t1", s"SELECT $function OVER(order by _2 rows between 1 preceding and current row) FROM t1", s"SELECT $function OVER(order by _2 rows between current row and 1 following) FROM t1")