We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c5f95 commit 7c2a68cCopy full SHA for 7c2a68c
ydb/core/kqp/provider/yql_kikimr_gateway.h
@@ -556,10 +556,10 @@ struct TKikimrTableMetadata : public TThrRefBase {
556
for (const auto& _ : Indexes[i].GetImplTables()) {
557
YQL_ENSURE(it != message->GetSecondaryGlobalIndexMetadata().end());
558
if (implTable) {
559
- implTable = &ImplTables.emplace_back(MakeIntrusive<TKikimrTableMetadata>(&*it++));
560
- } else {
561
(*implTable)->Next = MakeIntrusive<TKikimrTableMetadata>(&*it++);
562
implTable = &(*implTable)->Next;
+ } else {
+ implTable = &ImplTables.emplace_back(MakeIntrusive<TKikimrTableMetadata>(&*it++));
563
}
564
565
0 commit comments