Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: [comet-parquet-exec] temporarily disable plan stability tests #1274

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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)
}
}
}
}
@@ -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)
}
}
}
}