Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Revert "disable row_number() temporary (#994)"
Browse files Browse the repository at this point in the history
This reverts commit b973977.
  • Loading branch information
zhouyuan committed Jun 29, 2022
1 parent ed7a104 commit 3ae5810
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,10 @@ case class ColumnarWindowExec(windowExpression: Seq[NamedExpression],
try {
breakable {
for (func <- validateWindowFunctions()) {
// TODO(): disable row_number() for stability issue
// if (func._1 == "row_number") {
// allLiteral = false
// break
// }
if (func._1 == "row_number") {
allLiteral = false
break
}
for (child <- func._2.children) {
if (!child.isInstanceOf[Literal]) {
allLiteral = false
Expand Down

0 comments on commit 3ae5810

Please sign in to comment.