Skip to content

Commit

Permalink
Enable ORC timestamp and decimal predicate push down tests (#9827)
Browse files Browse the repository at this point in the history
Signed-off-by: Haoyang Li <[email protected]>
  • Loading branch information
thirtiseven authored Dec 11, 2023
1 parent 87555e9 commit 4ab7b68
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ class OrcFilterSuite extends SparkQueryCompareTestSuite {
}

test("Support for pushing down filters for decimal types gpu write gpu read") {
assume(false, "https://github.com/rapidsai/cudf/issues/13933")
withTempPath { file =>
withGpuSparkSession(spark => {
val data = (0 until 10).map(i => Tuple1(BigDecimal.valueOf(i)))
Expand All @@ -87,7 +86,6 @@ class OrcFilterSuite extends SparkQueryCompareTestSuite {
}

test("Support for pushing down filters for decimal types gpu write cpu read") {
assume(false, "https://github.com/rapidsai/cudf/issues/13933")
withTempPath { file =>
withGpuSparkSession(spark => {
val data = (0 until 10).map(i => Tuple1(BigDecimal.valueOf(i)))
Expand Down Expand Up @@ -132,7 +130,6 @@ class OrcFilterSuite extends SparkQueryCompareTestSuite {
}

test("Support for pushing down filters for timestamp types gpu write cpu read") {
assume(false, "https://github.com/rapidsai/cudf/issues/13899")
withTempPath { file =>
withGpuSparkSession(spark => {
val timeString = "2015-08-20 14:57:00"
Expand All @@ -151,7 +148,6 @@ class OrcFilterSuite extends SparkQueryCompareTestSuite {
}

test("Support for pushing down filters for timestamp types gpu write gpu read") {
assume(false, "https://github.com/rapidsai/cudf/issues/13899")
withTempPath { file =>
withGpuSparkSession(spark => {
val timeString = "2015-08-20 14:57:00"
Expand Down

0 comments on commit 4ab7b68

Please sign in to comment.