Skip to content

Commit 57be867

Browse files
committed
Fix build
1 parent b353499 commit 57be867

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ydb/core/grpc_services/rpc_alter_table.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class TAlterTableRPC : public TRpcSchemeRequestActor<TAlterTableRPC, TEvAlterTab
228228
Send(schemeCache, ev);
229229
}
230230

231-
void Navigate(const TTableId& pathId, const TActorContext& ctx) {
231+
void Navigate(const TTableId& pathId) {
232232
DatabaseName = Request_->GetDatabaseName()
233233
.GetOrElse(DatabaseFromDomain(AppData()));
234234

@@ -315,7 +315,7 @@ class TAlterTableRPC : public TRpcSchemeRequestActor<TAlterTableRPC, TEvAlterTab
315315
const auto& child = list->Children.at(0);
316316
AlterTable(ctx, CanonizePath(ChildPath(NKikimr::SplitPath(GetProtoRequest()->path()), child.Name)));
317317
} else {
318-
Navigate(entry.TableId, ctx);
318+
Navigate(entry.TableId);
319319
}
320320
break;
321321
default:

ydb/core/tx/replication/controller/dst_creator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class TDstCreator: public TActorBootstrapped<TDstCreator> {
218218
FillReplicationConfig(*desc->MutableReplicationConfig());
219219
if (scheme.indexes_size()) {
220220
for (auto& index : *TxBody.MutableCreateIndexedTable()->MutableIndexDescription()) {
221-
FillReplicationConfig(*index.MutableIndexImplTableDescriptions(0)->MutableReplicationConfig());
221+
FillReplicationConfig(*index.MutableIndexImplTableDescription()->MutableReplicationConfig());
222222
}
223223
}
224224

0 commit comments

Comments
 (0)