We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fd423a commit 2ce0570Copy full SHA for 2ce0570
1 file changed
ydb/core/tx/schemeshard/schemeshard_utils.cpp
@@ -136,8 +136,10 @@ NKikimrSchemeOp::TPartitionConfig PartitionConfigForIndexes(
136
if (baseTablePartitionConfig.HasKeepSnapshotTimeout()) {
137
result.SetKeepSnapshotTimeout(baseTablePartitionConfig.GetKeepSnapshotTimeout());
138
}
139
+ if (indexTableDesc.GetPartitionConfig().FollowerGroupsSize()) {
140
+ result.MutableFollowerGroups()->CopyFrom(indexTableDesc.GetPartitionConfig().GetFollowerGroups());
141
+ }
142
// skip repeated NKikimrStorageSettings.TStorageRoom StorageRooms = 17;
- // skip optional NKikimrHive.TFollowerGroup FollowerGroup = 23;
143
144
return result;
145
0 commit comments