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 cdf9e9d commit c078c48Copy full SHA for c078c48
ydb/core/tx/schemeshard/ut_ttl/ut_ttl_utility.cpp
@@ -8,9 +8,9 @@ using namespace NSchemeShard;
8
9
Y_UNIT_TEST_SUITE(TSchemeShardTTLUtility) {
10
void TestValidateTiers(const std::vector<NKikimrSchemeOp::TTTLSettings::TTier>& tiers, const TConclusionStatus& expectedResult) {
11
- NKikimrSchemeOp::TTTLSettings::TEnabled input;
+ google::protobuf::RepeatedPtrField<NKikimrSchemeOp::TTTLSettings_TTier> input;
12
for (const auto& tier : tiers) {
13
- *input.AddTiers() = tier;
+ input.Add()->CopyFrom(tier);
14
}
15
16
TString error;
0 commit comments