Skip to content

Commit

Permalink
[GLUTEN-7130][CORE] Skip command execution when collect qe fallback s…
Browse files Browse the repository at this point in the history
…ummary (apache#7132)
  • Loading branch information
wForget authored and shamirchen committed Oct 14, 2024
1 parent b9eed74 commit a9b8df9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ object GlutenImplicits {
withSQLConf(SQLConf.ADAPTIVE_EXECUTION_ENABLED.key -> "false") {
// AQE is not materialized, so the columnar rules are not applied.
// For this case, We apply columnar rules manually with disable AQE.
val qe = spark.sessionState.executePlan(logicalPlan)
val qe = spark.sessionState.executePlan(logicalPlan, CommandExecutionMode.SKIP)
processPlan(qe.executedPlan, concat.append, collectFallbackFunc)
}
} else {
Expand Down

0 comments on commit a9b8df9

Please sign in to comment.