We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf73630 commit 8b795ddCopy full SHA for 8b795dd
1 file changed
datafusion/physical-plan/src/metrics/value.rs
@@ -384,11 +384,10 @@ impl Display for PruningMetrics {
384
if fully_matched != 0 {
385
write!(
386
f,
387
- "{} total → {} matched -> {} fully matched",
388
- total, matched, fully_matched
+ "{total} total → {matched} matched -> {fully_matched} fully matched",
389
)
390
} else {
391
- write!(f, "{} total → {} matched", total, matched)
+ write!(f, "{total} total → {matched} matched")
392
}
393
394
0 commit comments