| 222 | } |
| 223 | |
| 224 | std::string summarizeNonNull(vector_size_t index) const override { |
| 225 | auto* base = decoded_.base(); |
| 226 | auto baseIndex = decoded_.index(index); |
| 227 | return fmt::format( |
| 228 | "{} size: {}", |
| 229 | base->type()->toString(), |
| 230 | base->as<MapVector>()->sizeAt(baseIndex)); |
| 231 | } |
| 232 | }; |
| 233 | |
| 234 | class RowVectorPrinter : public VectorPrinter { |