| 60 | virtual ~VectorPrinter() = default; |
| 61 | |
| 62 | std::string summarize(vector_size_t index) const { |
| 63 | if (decoded_.isNullAt(index)) { |
| 64 | return fmt::format("{} <null>", decoded_.base()->type()->toString()); |
| 65 | } |
| 66 | |
| 67 | return summarizeNonNull(index); |
| 68 | } |
| 69 | |
| 70 | std::string print(vector_size_t index, const std::string& indent) const { |
| 71 | if (decoded_.isNullAt(index)) { |
no test coverage detected