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
  • Loading branch information
wForget committed Sep 5, 2024
1 parent d289b54 commit 9a146ed
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 9a146ed

Please sign in to comment.