@@ -333,14 +333,14 @@ bool Insert(TColumnEngineForLogs& engine, TTestDbWrapper& db, TSnapshot snap, st
333333 NOlap::TConstructionContext context (engine.GetVersionedIndex (), NColumnShard::TIndexationCounters (" Indexation" ), snap);
334334 Y_ABORT_UNLESS (changes->ConstructBlobs (context).Ok ());
335335
336- UNIT_ASSERT_VALUES_EQUAL (changes->AppendedPortions .size (), 1 );
336+ UNIT_ASSERT_VALUES_EQUAL (changes->GetAppendedPortions () .size (), 1 );
337337 ui32 blobsCount = 0 ;
338- for (auto && i : changes->AppendedPortions ) {
338+ for (auto && i : changes->GetAppendedPortions () ) {
339339 blobsCount += i.GetBlobs ().size ();
340340 }
341341 UNIT_ASSERT_VALUES_EQUAL (blobsCount, 1 ); // add 2 columns: planStep, txId
342342
343- AddIdsToBlobs (changes->AppendedPortions , blobs, step);
343+ AddIdsToBlobs (changes->MutableAppendedPortions () , blobs, step);
344344
345345 const bool result = engine.ApplyChangesOnTxCreate (changes, snap) && engine.ApplyChangesOnExecute (db, changes, snap);
346346
@@ -394,7 +394,7 @@ bool Compact(TColumnEngineForLogs& engine, TTestDbWrapper& db, TSnapshot snap, N
394394 Y_ABORT_UNLESS (changes->ConstructBlobs (context).Ok ());
395395
396396 // UNIT_ASSERT_VALUES_EQUAL(changes->AppendedPortions.size(), expected.NewPortions);
397- AddIdsToBlobs (changes->AppendedPortions , changes->Blobs , step);
397+ AddIdsToBlobs (changes->MutableAppendedPortions () , changes->Blobs , step);
398398
399399 // UNIT_ASSERT_VALUES_EQUAL(changes->GetTmpGranuleIds().size(), expected.NewGranules);
400400
@@ -404,7 +404,7 @@ bool Compact(TColumnEngineForLogs& engine, TTestDbWrapper& db, TSnapshot snap, N
404404 NOlap::TWriteIndexCompleteContext contextComplete (NActors::TActivationContext::AsActorContext (), 0 , 0 , TDuration::Zero (), engine, snap);
405405 changes->WriteIndexOnComplete (nullptr , contextComplete);
406406 if (blobsPool) {
407- for (auto && i : changes->AppendedPortions ) {
407+ for (auto && i : changes->GetAppendedPortions () ) {
408408 for (auto && r : i.GetPortionResult ().TestGetRecords ()) {
409409 Y_ABORT_UNLESS (blobsPool
410410 ->emplace (i.GetPortionResult ().GetPortionInfo ().RestoreBlobRange (r.BlobRange ),
0 commit comments