Skip to content

Commit d588381

Browse files
corrections after merge
1 parent 4f189c8 commit d588381

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ydb/core/tx/columnshard/engines/reader/plain_reader/iterator/context.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ std::shared_ptr<TFetchingScript> TSpecialReadContext::BuildColumnsFetchingPlan(c
8787

8888
NCommon::TFetchingScriptBuilder acc(*this);
8989
if (!!IndexChecker && useIndexes && exclusiveSource) {
90-
acc.AddStep(std::make_shared<TIndexBlobsFetchingStep>(std::make_shared<TIndexesSet>(IndexChecker->GetIndexIds())));
90+
acc.AddStep(std::make_shared<TIndexBlobsFetchingStep>(
91+
std::make_shared<TIndexesSet>(NIndexes::TIndexDataAddress::ExtractIndexIds(IndexChecker->GetIndexIds()))));
9192
acc.AddStep(std::make_shared<TApplyIndexStep>(IndexChecker));
9293
}
9394
bool hasFilterSharding = false;

ydb/core/tx/columnshard/engines/reader/simple_reader/iterator/context.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ std::shared_ptr<TFetchingScript> TSpecialReadContext::BuildColumnsFetchingPlan(c
6363

6464
NCommon::TFetchingScriptBuilder acc(*this);
6565
if (!!IndexChecker && useIndexes) {
66-
acc.AddStep(std::make_shared<TIndexBlobsFetchingStep>(std::make_shared<TIndexesSet>(IndexChecker->GetIndexIds())));
66+
acc.AddStep(std::make_shared<TIndexBlobsFetchingStep>(
67+
std::make_shared<TIndexesSet>(NIndexes::TIndexDataAddress::ExtractIndexIds(IndexChecker->GetIndexIds()))));
6768
acc.AddStep(std::make_shared<TApplyIndexStep>(IndexChecker));
6869
}
6970
if (needFilterSharding && !GetShardingColumns()->IsEmpty()) {

0 commit comments

Comments
 (0)