Skip to content

Commit

Permalink
fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
shuai-xu committed Sep 13, 2024
1 parent 95e3972 commit faea079
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class GlutenHiveSQLQueryCHSuite extends GlutenHiveSQLQuerySuiteBase {
val df = sql(query)
checkAnswer(
df,
Seq(Row(1, 'a'), Row(1, 'b'), Row(2, null), Row(null, 'c'), Row(null, 'd'), Row(3, "")))
Seq(Row(1, "a"), Row(1, "b"), Row(2, null), Row(null, "c"), Row(null, "d"), Row(3, "")))
spark.sessionState.catalog.dropTable(
TableIdentifier("test_7116"),
ignoreIfNotExists = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class GlutenHiveSQLQueryCHSuite extends GlutenHiveSQLQuerySuiteBase {
val df = sql(query)
checkAnswer(
df,
Seq(Row(1, 'a'), Row(1, 'b'), Row(2, null), Row(null, 'c'), Row(null, 'd'), Row(3, "")))
Seq(Row(1, "a"), Row(1, "b"), Row(2, null), Row(null, "c"), Row(null, "d"), Row(3, "")))
spark.sessionState.catalog.dropTable(
TableIdentifier("test_7116"),
ignoreIfNotExists = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class GlutenHiveSQLQueryCHSuite extends GlutenHiveSQLQuerySuiteBase {
val df = sql(query)
checkAnswer(
df,
Seq(Row(1, 'a'), Row(1, 'b'), Row(2, null), Row(null, 'c'), Row(null, 'd'), Row(3, "")))
Seq(Row(1, "a"), Row(1, "b"), Row(2, null), Row(null, "c"), Row(null, "d"), Row(3, "")))
spark.sessionState.catalog.dropTable(
TableIdentifier("test_7116"),
ignoreIfNotExists = true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class GlutenHiveSQLQueryCHSuite extends GlutenHiveSQLQuerySuiteBase {
val df = sql(query)
checkAnswer(
df,
Seq(Row(1, 'a'), Row(1, 'b'), Row(2, null), Row(null, 'c'), Row(null, 'd'), Row(3, "")))
Seq(Row(1, "a"), Row(1, "b"), Row(2, null), Row(null, "c"), Row(null, "d"), Row(3, "")))
spark.sessionState.catalog.dropTable(
TableIdentifier("test_7116"),
ignoreIfNotExists = true,
Expand Down

0 comments on commit faea079

Please sign in to comment.