We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8640bba commit 38026ddCopy full SHA for 38026dd
datafusion/physical-plan/src/placeholder_row.rs
@@ -113,15 +113,11 @@ impl DisplayAs for PlaceholderRowExec {
113
f: &mut std::fmt::Formatter,
114
) -> std::fmt::Result {
115
match t {
116
- DisplayFormatType::Default => {
117
- write!(f, "PlaceholderRowExec: produces single row")
118
- }
119
- DisplayFormatType::Verbose => {
120
121
122
- DisplayFormatType::TreeRender => {
123
- write!(f, "produces single row")
+ DisplayFormatType::Default | DisplayFormatType::Verbose => {
+ write!(f, "PlaceholderRowExec")
124
}
+
+ DisplayFormatType::TreeRender => Ok(()),
125
126
127
0 commit comments