We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92d8632 commit e45de7fCopy full SHA for e45de7f
datafusion/ffi/src/execution_plan.rs
@@ -205,7 +205,8 @@ impl DisplayAs for ForeignExecutionPlan {
205
DisplayFormatType::Default | DisplayFormatType::Verbose => {
206
write!(
207
f,
208
- "FFI_ExecutionPlan(number_of_children={})",
+ "FFI_ExecutionPlan: {}, number_of_children={}",
209
+ self.name,
210
self.children.len(),
211
)
212
}
@@ -390,7 +391,10 @@ mod tests {
390
391
);
392
393
let buf = display.one_line().to_string();
- assert_eq!(buf.trim(), "FFI_ExecutionPlan(number_of_children=0)");
394
+ assert_eq!(
395
+ buf.trim(),
396
+ "FFI_ExecutionPlan: empty-exec, number_of_children=0"
397
+ );
398
399
Ok(())
400
0 commit comments