Skip to content

Commit

Permalink
ignore more unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan committed Oct 10, 2024
1 parent aecf32a commit 264ac93
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,25 +137,26 @@ class GlutenClickhouseStringFunctionsSuite extends GlutenClickHouseWholeStageTra
}
}

// test("base64") {
// val tableName = "base64_table"
// withTable(tableName) {
// sql(s"create table $tableName(data String) using parquet")
// sql(s"""
// |insert into $tableName values
// | ("hello")
// """.stripMargin)

// val sql_str =
// s"""
// |select
// | base64(data)
// | from $tableName
// """.stripMargin

// runQueryAndCompare(sql_str) { _ => }
// }
// }
testSparkVersionLE33("base64") {
// fallback on Spark-352, see https://github.com/apache/spark/pull/47303
val tableName = "base64_table"
withTable(tableName) {
sql(s"create table $tableName(data String) using parquet")
sql(s"""
|insert into $tableName values
| ("hello")
""".stripMargin)

val sql_str =
s"""
|select
| base64(data)
| from $tableName
""".stripMargin

runQueryAndCompare(sql_str) { _ => }
}
}

test("unbase64") {
val tableName = "unbase64_table"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ class VeloxTestSettings extends BackendTestSettings {
.exclude("test with tab delimiter and double quote")
// Arrow not support corrupt record
.exclude("SPARK-27873: disabling enforceSchema should not fail columnNameOfCorruptRecord")
// varchar
.exclude("SPARK-48241: CSV parsing failure with char/varchar type columns")
enableSuite[GlutenCSVLegacyTimeParserSuite]
// file cars.csv include null string, Arrow not support to read
.exclude("DDL test with schema")
Expand Down

0 comments on commit 264ac93

Please sign in to comment.