Skip to content

Commit

Permalink
ignore some checks when spark 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyang-li committed Jul 30, 2024
1 parent ac8bfe0 commit 3033a13
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -913,10 +913,12 @@ class GlutenClickHouseNativeWriteTableSuite
(table_name, create_sql, insert_sql)
},
(table_name, _) =>
compareResultsAgainstVanillaSpark(
s"select * from $table_name",
compareResult = true,
_ => {})
if (isSparkVersionGE("3.4")) {
compareResultsAgainstVanillaSpark(
s"select * from $table_name",
compareResult = true,
_ => {})
}
)
}
}

0 comments on commit 3033a13

Please sign in to comment.