Skip to content

Commit

Permalink
Fix the failed unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JkSelf committed Jul 30, 2024
1 parent 67b5cf0 commit 10b8cb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ object VeloxBackendSettings extends BackendSettingsApi {
orderSpec.foreach(
order =>
order.dataType match {
case ByteType | ShortType | IntegerType | LongType | DateType =>
case ByteType | ShortType | IntegerType | LongType =>
case _ =>
throw new GlutenNotSupportException(
"Only integral type & date type are" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class TestOperator extends VeloxWholeStageTransformerSuite with AdaptiveSparkPla
"select max(l_partkey) over" +
" (partition by l_suppkey order by l_commitdate" +
" RANGE BETWEEN 1 PRECEDING AND CURRENT ROW) from lineitem ") {
checkSparkOperatorMatch[WindowExecTransformer]
checkSparkOperatorMatch[WindowExec]
}

runQueryAndCompare(
Expand Down

0 comments on commit 10b8cb6

Please sign in to comment.