Skip to content

Commit

Permalink
[CH] [Hotfix]: Ignore unstable hdfs cache suite (#6969)
Browse files Browse the repository at this point in the history
  • Loading branch information
loneylee authored Aug 22, 2024
1 parent ed3d333 commit 68c2f53
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ class GlutenClickHouseHDFSSuite

override def beforeAll(): Unit = {
super.beforeAll()
deleteCache()
}

override protected def beforeEach(): Unit = {
Expand Down Expand Up @@ -110,19 +109,19 @@ class GlutenClickHouseHDFSSuite
}
}

test("test hdfs cache") {
ignore("test hdfs cache") {
runWithoutCache()
runWithCache()
}

test("test cache file command") {
ignore("test cache file command") {
runSql(
s"CACHE FILES select * from '$HDFS_URL_ENDPOINT/tpch-data/lineitem'",
noFallBack = false) { _ => }
runWithCache()
}

test("test no cache by query") {
ignore("test no cache by query") {
withSQLConf(
s"$CH_SETTING_PREFIX.read_from_filesystem_cache_if_exists_otherwise_bypass_cache" -> "true") {
runWithoutCache()
Expand Down

0 comments on commit 68c2f53

Please sign in to comment.