Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
swalrus1 committed Jul 26, 2024
1 parent 1b55b5e commit ed8764e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions ydb/core/tx/columnshard/columnshard_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ class TColumnShard
struct TColumnTableStats {
ui64 RowCount = 0;
ui64 DataSize = 0;
ui64 Portions = 0;
TInstant AccessTime;
TInstant UpdateTime;
TInstant LastFullCompaction;
Expand Down
2 changes: 2 additions & 0 deletions ydb/core/tx/schemeshard/ut_olap/ut_olap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,7 @@ Y_UNIT_TEST_SUITE(TOlap) {

UNIT_ASSERT_GT(tabletStats.GetRowCount(), 0);
UNIT_ASSERT_GT(tabletStats.GetDataSize(), 0);
UNIT_ASSERT_GT(tabletStats.GetPartCount(), 0);
UNIT_ASSERT_GT(tabletStats.GetRowUpdates(), 0);
UNIT_ASSERT_GT(tabletStats.GetImmediateTxCompleted(), 0);
UNIT_ASSERT_GT(tabletStats.GetPlannedTxCompleted(), 0);
Expand All @@ -748,6 +749,7 @@ Y_UNIT_TEST_SUITE(TOlap) {

UNIT_ASSERT_GT(tabletStats.GetRowCount(), 0);
UNIT_ASSERT_GT(tabletStats.GetDataSize(), 0);
UNIT_ASSERT_GT(tabletStats.GetPartCount(), 0);
UNIT_ASSERT_GT(tabletStats.GetRowUpdates(), 0);
UNIT_ASSERT_GT(tabletStats.GetImmediateTxCompleted(), 0);
UNIT_ASSERT_GT(tabletStats.GetPlannedTxCompleted(), 0);
Expand Down

0 comments on commit ed8764e

Please sign in to comment.