Skip to content

Commit 38026dd

Browse files
committed
rollback formatting to original
1 parent 8640bba commit 38026dd

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

datafusion/physical-plan/src/placeholder_row.rs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,11 @@ impl DisplayAs for PlaceholderRowExec {
113113
f: &mut std::fmt::Formatter,
114114
) -> std::fmt::Result {
115115
match t {
116-
DisplayFormatType::Default => {
117-
write!(f, "PlaceholderRowExec: produces single row")
118-
}
119-
DisplayFormatType::Verbose => {
120-
write!(f, "PlaceholderRowExec: produces single row")
121-
}
122-
DisplayFormatType::TreeRender => {
123-
write!(f, "produces single row")
116+
DisplayFormatType::Default | DisplayFormatType::Verbose => {
117+
write!(f, "PlaceholderRowExec")
124118
}
119+
120+
DisplayFormatType::TreeRender => Ok(()),
125121
}
126122
}
127123
}

0 commit comments

Comments
 (0)