File tree 1 file changed +3
-4
lines changed
spark/src/test/scala/org/apache/comet/exec
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -1492,10 +1492,9 @@ class CometExecSuite extends CometTestBase {
1492
1492
aggregateFunctions.foreach { function =>
1493
1493
val queries = Seq (
1494
1494
s " SELECT $function OVER() FROM t1 " ,
1495
- // TODO: Range frame is not supported yet.
1496
- // s"SELECT $function OVER(order by _2) FROM t1",
1497
- // s"SELECT $function OVER(order by _2 desc) FROM t1",
1498
- // s"SELECT $function OVER(partition by _2 order by _2) FROM t1",
1495
+ s " SELECT $function OVER(order by _2) FROM t1 " ,
1496
+ s " SELECT $function OVER(order by _2 desc) FROM t1 " ,
1497
+ s " SELECT $function OVER(partition by _2 order by _2) FROM t1 " ,
1499
1498
s " SELECT $function OVER(rows between 1 preceding and 1 following) FROM t1 " ,
1500
1499
s " SELECT $function OVER(order by _2 rows between 1 preceding and current row) FROM t1 " ,
1501
1500
s " SELECT $function OVER(order by _2 rows between current row and 1 following) FROM t1 " )
You can’t perform that action at this time.
0 commit comments