Skip to content

Commit aa32743

Browse files
fix
1 parent 1ec378b commit aa32743

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/core/tx/columnshard/engines/portions/constructor_meta.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ bool TPortionMetaConstructor::LoadMetadata(const NKikimrTxColumnShard::TIndexPor
7676
RecordsCount = TValidator::CheckNotNull(portionMeta.GetRecordsCount());
7777
ColumnRawBytes = TValidator::CheckNotNull(portionMeta.GetColumnRawBytes());
7878
ColumnBlobBytes = TValidator::CheckNotNull(portionMeta.GetColumnBlobBytes());
79-
IndexRawBytes = TValidator::CheckNotNull(portionMeta.GetIndexRawBytes());
80-
IndexBlobBytes = TValidator::CheckNotNull(portionMeta.GetIndexBlobBytes());
79+
IndexRawBytes = portionMeta.GetIndexRawBytes();
80+
IndexBlobBytes = portionMeta.GetIndexBlobBytes();
8181
if (portionMeta.GetIsInserted()) {
8282
Produced = TPortionMeta::EProduced::INSERTED;
8383
} else if (portionMeta.GetIsCompacted()) {

0 commit comments

Comments
 (0)