Skip to content

Commit

Permalink
Revert "Enable test cases to test premerge"
Browse files Browse the repository at this point in the history
This reverts commit f50f42d.
  • Loading branch information
Chong Gao committed Sep 18, 2023
1 parent f50f42d commit 894d7ad
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, basic types") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand Down Expand Up @@ -265,7 +265,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, array") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
basicTypes.foreach { t =>
val schema = s"struct<c01: array<$t>>"
val nullProbabilities = Seq(0d, 0.5d)
Expand All @@ -289,7 +289,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, map") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
basicTypes.foreach { t =>
val nullProbabilities = Seq(0d, 0.5d)
nullProbabilities.foreach { nullProbability =>
Expand All @@ -307,7 +307,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, struct") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema = basicTypes.zipWithIndex.map { case (t, index) =>
s"c0$index: $t"
}.mkString("struct<\nc1: struct<", ", \n", ">>")
Expand All @@ -321,7 +321,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, struct(array, map, struct)") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand Down Expand Up @@ -351,7 +351,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, array(struct, array)") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand All @@ -378,7 +378,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, map(array)") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand All @@ -401,7 +401,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, map(struct)") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand Down Expand Up @@ -430,7 +430,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, array(map)") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand Down Expand Up @@ -514,7 +514,7 @@ class ParquetScaleTestSuite extends SparkQueryCompareTestSuite with Logging {
}

test("Statistics tests for Parquet files written by GPU, map(map)") {
assume(true, "Move to scale test")
assume(false, "Move to scale test")
val schema =
"""
struct<
Expand Down

0 comments on commit 894d7ad

Please sign in to comment.