Skip to content

Commit

Permalink
disable row_number() temporary (oap-project#994)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan authored Jun 28, 2022
1 parent e63ef98 commit b973977
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,11 @@ case class ColumnarWindowExec(windowExpression: Seq[NamedExpression],
try {
breakable {
for (func <- validateWindowFunctions()) {
if (func._1 == "row_number") {
allLiteral = false
break
}
// TODO(): disable row_number() for stability issue
// 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 b973977

Please sign in to comment.