| 234 | class RowVectorPrinter : public VectorPrinter { |
| 235 | public: |
| 236 | explicit RowVectorPrinter(const BaseVector& vector) : VectorPrinter(vector) { |
| 237 | auto* rowVector = decoded_.base()->as<RowVector>(); |
| 238 | for (const auto& child : rowVector->children()) { |
| 239 | children_.emplace_back(createVectorPrinter(*child)); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | protected: |
| 244 | std::string printNonNull(vector_size_t index, const std::string& indent) |
nothing calls this directly
no test coverage detected