Skip to content

Commit 766ee48

Browse files
authored
Fix partition count in column table description (#8589)
1 parent a29e93b commit 766ee48

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ydb/core/tx/columnshard/counters/aggregation/table_stats.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class TTableStatsBuilder {
2929
auto activeStats = (*columnEngineStats)->Active();
3030
tableStats.SetRowCount(activeStats.Rows);
3131
tableStats.SetDataSize(activeStats.Bytes);
32-
tableStats.SetPartCount(activeStats.Portions);
3332
}
3433
}
3534

@@ -42,7 +41,6 @@ class TTableStatsBuilder {
4241
auto activeStats = ColumnEngine.GetTotalStats().Active();
4342
tableStats.SetRowCount(activeStats.Rows);
4443
tableStats.SetDataSize(activeStats.Bytes);
45-
tableStats.SetPartCount(activeStats.Portions);
4644
}
4745
};
4846

0 commit comments

Comments
 (0)