Skip to content

Commit e4381e2

Browse files
fix incorrect default storage id for count min sketch index
1 parent 916a423 commit e4381e2

File tree

1 file changed

+1
-1
lines changed
  • ydb/core/tx/columnshard/engines/storage/indexes/count_min_sketch

1 file changed

+1
-1
lines changed

ydb/core/tx/columnshard/engines/storage/indexes/count_min_sketch/constructor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ std::shared_ptr<NKikimr::NOlap::NIndexes::IIndexMeta> TCountMinSketchConstructor
2020
}
2121
AFL_VERIFY(columnIds.emplace(columnInfo->GetId()).second);
2222
}
23-
return std::make_shared<TIndexMeta>(indexId, indexName, GetStorageId().value_or(NBlobOperations::TGlobal::LocalMetadataStorageId), columnIds);
23+
return std::make_shared<TIndexMeta>(indexId, indexName, GetStorageId().value_or(NBlobOperations::TGlobal::DefaultStorageId), columnIds);
2424
}
2525

2626
NKikimr::TConclusionStatus TCountMinSketchConstructor::DoDeserializeFromJson(const NJson::TJsonValue& jsonInfo) {

0 commit comments

Comments
 (0)