MCPcopy Create free account
hub / github.com/duckdb/duckdb / LineCount

Method LineCount

tools/shell/shell_render_table_metadata.cpp:75–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers 2

RenderLineMethod · 0.80
RenderTableMetadataMethod · 0.80

Calls 1

IsValidMethod · 0.45

Tested by

no test coverage detected