(&self, t: DisplayFormatType, f: &mut fmt::Formatter)
| 162 | |
| 163 | impl DisplayAs for DataSinkExec { |
| 164 | fn fmt_as(&self, t: DisplayFormatType, f: &mut fmt::Formatter) -> fmt::Result { |
| 165 | match t { |
| 166 | DisplayFormatType::Default | DisplayFormatType::Verbose => { |
| 167 | write!(f, "DataSinkExec: sink=")?; |
| 168 | self.sink.fmt_as(t, f) |
| 169 | } |
| 170 | DisplayFormatType::TreeRender => self.sink().fmt_as(t, f), |
| 171 | } |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | impl ExecutionPlan for DataSinkExec { |