andygrove commented on code in PR #1672:
URL: 
https://github.com/apache/datafusion-ballista/pull/1672#discussion_r3213731855


##########
ballista/scheduler/src/state/aqe/execution_plan.rs:
##########
@@ -411,12 +411,13 @@ impl DisplayAs for AdaptiveDatafusionExec {
             DisplayFormatType::Default | DisplayFormatType::Verbose => {
                 write!(
                     f,
-                    "AdaptiveDatafusionExec: is_final={:?}, plan_id={}, 
stage_id={}",
+                    "AdaptiveDatafusionExec: is_final={:?}, plan_id={}, 
stage_id={}, stage_resolved={}",
                     self.is_final,
                     self.plan_id,
                     self.stage_id()
                         .map(|stage_id| format!("{}", stage_id))
                         .unwrap_or_else(|| "pending".to_string()),
+                    self.shuffle_partitions.lock().is_some()

Review Comment:
   nit: looks like there is an existing `self.shuffle_created()` helper that 
could be used?
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to