@@ -175,6 +175,9 @@ impl DisplayAs for MockExec {
175
175
DisplayFormatType :: Default | DisplayFormatType :: Verbose => {
176
176
write ! ( f, "MockExec" )
177
177
}
178
+ DisplayFormatType :: TreeRender => {
179
+ write ! ( f, "" ) // TODO(renjj): add display info
180
+ }
178
181
}
179
182
}
180
183
}
@@ -337,6 +340,9 @@ impl DisplayAs for BarrierExec {
337
340
DisplayFormatType :: Default | DisplayFormatType :: Verbose => {
338
341
write ! ( f, "BarrierExec" )
339
342
}
343
+ DisplayFormatType :: TreeRender => {
344
+ write ! ( f, "" ) // TODO(renjj): add display info
345
+ }
340
346
}
341
347
}
342
348
}
@@ -449,6 +455,9 @@ impl DisplayAs for ErrorExec {
449
455
DisplayFormatType :: Default | DisplayFormatType :: Verbose => {
450
456
write ! ( f, "ErrorExec" )
451
457
}
458
+ DisplayFormatType :: TreeRender => {
459
+ write ! ( f, "" ) // TODO(renjj): add display info
460
+ }
452
461
}
453
462
}
454
463
}
@@ -535,6 +544,9 @@ impl DisplayAs for StatisticsExec {
535
544
self . stats. num_rows,
536
545
)
537
546
}
547
+ DisplayFormatType :: TreeRender => {
548
+ write ! ( f, "" ) // TODO(renjj): add display info
549
+ }
538
550
}
539
551
}
540
552
}
@@ -630,6 +642,9 @@ impl DisplayAs for BlockingExec {
630
642
DisplayFormatType :: Default | DisplayFormatType :: Verbose => {
631
643
write ! ( f, "BlockingExec" , )
632
644
}
645
+ DisplayFormatType :: TreeRender => {
646
+ write ! ( f, "" ) // TODO(renjj): add display info
647
+ }
633
648
}
634
649
}
635
650
}
@@ -772,6 +787,9 @@ impl DisplayAs for PanicExec {
772
787
DisplayFormatType :: Default | DisplayFormatType :: Verbose => {
773
788
write ! ( f, "PanicExec" , )
774
789
}
790
+ DisplayFormatType :: TreeRender => {
791
+ write ! ( f, "" ) // TODO(renjj): add display info
792
+ }
775
793
}
776
794
}
777
795
}
0 commit comments