| 73 | vector<ColumnRenderRow> column_renders; |
| 74 | |
| 75 | idx_t LineCount() const { |
| 76 | idx_t constant_count = 4; |
| 77 | if (estimated_size_length.IsValid()) { |
| 78 | constant_count += 2; |
| 79 | } |
| 80 | return ColumnLines() + constant_count; |
| 81 | } |
| 82 | idx_t PerColumnWidth() const { |
| 83 | idx_t width = 4; |
| 84 | for (auto &component_width : max_component_widths) { |
no test coverage detected