Skip to content

Commit

Permalink
[MINOR] feat: Enable Comet broadcast by default (apache#1941)
Browse files Browse the repository at this point in the history
These changes to testing were included in apache/datafusion-comet#213
  • Loading branch information
Steve Vaughan Jr authored and GitHub Enterprise committed Apr 11, 2024
1 parent 535dbc2 commit 972bf81
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,8 @@ abstract class DynamicPartitionPruningSuiteBase
}
}

test("Plan broadcast pruning only when the broadcast can be reused") {
test("Plan broadcast pruning only when the broadcast can be reused",
IgnoreComet("TODO: Support SubqueryBroadcastExec in Comet: #242")) {
Given("dynamic pruning filter on the build side")
withSQLConf(SQLConf.DYNAMIC_PARTITION_PRUNING_REUSE_BROADCAST_ONLY.key -> "true") {
val df = sql(
Expand Down Expand Up @@ -1489,7 +1490,7 @@ abstract class DynamicPartitionPruningSuiteBase
}

test("SPARK-38148: Do not add dynamic partition pruning if there exists static partition " +
"pruning") {
"pruning", IgnoreComet("TODO: Support SubqueryBroadcastExec in Comet: #242")) {
withSQLConf(SQLConf.DYNAMIC_PARTITION_PRUNING_ENABLED.key -> "true") {
Seq(
"f.store_id = 1" -> false,
Expand Down

0 comments on commit 972bf81

Please sign in to comment.