Browse Source

Fix partition count in column table description (#8589)

Semyon 6 months ago
parent
commit
766ee48a9e
1 changed files with 0 additions and 2 deletions
  1. 0 2
      ydb/core/tx/columnshard/counters/aggregation/table_stats.h

+ 0 - 2
ydb/core/tx/columnshard/counters/aggregation/table_stats.h

@@ -29,7 +29,6 @@ public:
             auto activeStats = (*columnEngineStats)->Active();
             tableStats.SetRowCount(activeStats.Rows);
             tableStats.SetDataSize(activeStats.Bytes);
-            tableStats.SetPartCount(activeStats.Portions);
         }
     }
 
@@ -42,7 +41,6 @@ public:
         auto activeStats = ColumnEngine.GetTotalStats().Active();
         tableStats.SetRowCount(activeStats.Rows);
         tableStats.SetDataSize(activeStats.Bytes);
-        tableStats.SetPartCount(activeStats.Portions);
     }
 };