Skip to content

Commit

Permalink
test: temporarily disable plan stability tests (#1274)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthchandra authored Jan 13, 2025
1 parent 6df59bd commit 274566f
Showing 1 changed file with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,11 @@ class CometTPCDSV1_4_PlanStabilitySuite extends CometPlanStabilitySuite {
override val goldenFilePath: String =
new File(baseResourcePath, planName).getAbsolutePath

tpcdsQueries.foreach { q =>
test(s"check simplified (tpcds-v1.4/$q)") {
testQuery("tpcds", q)
if (CometConf.COMET_NATIVE_SCAN_IMPL.get().equals(CometConf.SCAN_NATIVE_COMET)) {
tpcdsQueries.foreach { q =>
test(s"check simplified (tpcds-v1.4/$q)") {
testQuery("tpcds", q)
}
}
}
}
Expand All @@ -343,9 +345,11 @@ class CometTPCDSV2_7_PlanStabilitySuite extends CometPlanStabilitySuite {
override val goldenFilePath: String =
new File(baseResourcePath, planName).getAbsolutePath

tpcdsQueriesV2_7_0.foreach { q =>
test(s"check simplified (tpcds-v2.7.0/$q)") {
testQuery("tpcds-v2.7.0", q)
if (CometConf.COMET_NATIVE_SCAN_IMPL.get().equals(CometConf.SCAN_NATIVE_COMET)) {
tpcdsQueriesV2_7_0.foreach { q =>
test(s"check simplified (tpcds-v2.7.0/$q)") {
testQuery("tpcds-v2.7.0", q)
}
}
}
}

0 comments on commit 274566f

Please sign in to comment.