@@ -582,7 +582,7 @@ Y_UNIT_TEST_SUITE(TColumnEngineTestLogs) {
582582
583583 TSnapshot indexSnapshot (1 , 1 );
584584 TColumnEngineForLogs engine (
585- 0 , std::make_shared<NDataAccessorControl::TLocalManager>(), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
585+ 0 , std::make_shared<NDataAccessorControl::TLocalManager>(nullptr ), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
586586 engine.RegisterTable (pathId);
587587 engine.TestingLoad (db);
588588
@@ -683,7 +683,7 @@ Y_UNIT_TEST_SUITE(TColumnEngineTestLogs) {
683683
684684 TSnapshot indexSnapshot (1 , 1 );
685685 TColumnEngineForLogs engine (
686- 0 , std::make_shared<NDataAccessorControl::TLocalManager>(), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
686+ 0 , std::make_shared<NDataAccessorControl::TLocalManager>(nullptr ), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
687687 engine.RegisterTable (pathId);
688688 engine.TestingLoad (db);
689689
@@ -709,7 +709,7 @@ Y_UNIT_TEST_SUITE(TColumnEngineTestLogs) {
709709
710710 { // check it's overloaded after reload
711711 TColumnEngineForLogs tmpEngine (
712- 0 , std::make_shared<NDataAccessorControl::TLocalManager>(), CommonStoragesManager, TSnapshot::Zero (), TIndexInfo (tableInfo));
712+ 0 , std::make_shared<NDataAccessorControl::TLocalManager>(nullptr ), CommonStoragesManager, TSnapshot::Zero (), TIndexInfo (tableInfo));
713713 tmpEngine.RegisterTable (pathId);
714714 tmpEngine.TestingLoad (db);
715715 }
@@ -741,7 +741,7 @@ Y_UNIT_TEST_SUITE(TColumnEngineTestLogs) {
741741
742742 { // check it's not overloaded after reload
743743 TColumnEngineForLogs tmpEngine (
744- 0 , std::make_shared<NDataAccessorControl::TLocalManager>(), CommonStoragesManager, TSnapshot::Zero (), TIndexInfo (tableInfo));
744+ 0 , std::make_shared<NDataAccessorControl::TLocalManager>(nullptr ), CommonStoragesManager, TSnapshot::Zero (), TIndexInfo (tableInfo));
745745 tmpEngine.RegisterTable (pathId);
746746 tmpEngine.TestingLoad (db);
747747 }
@@ -762,7 +762,7 @@ Y_UNIT_TEST_SUITE(TColumnEngineTestLogs) {
762762 TSnapshot indexSnapshot (1 , 1 );
763763 {
764764 TColumnEngineForLogs engine (
765- 0 , std::make_shared<NDataAccessorControl::TLocalManager>(), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
765+ 0 , std::make_shared<NDataAccessorControl::TLocalManager>(nullptr ), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
766766 engine.RegisterTable (pathId);
767767 engine.TestingLoad (db);
768768
@@ -841,7 +841,7 @@ Y_UNIT_TEST_SUITE(TColumnEngineTestLogs) {
841841 {
842842 // load
843843 TColumnEngineForLogs engine (
844- 0 , std::make_shared<NDataAccessorControl::TLocalManager>(), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
844+ 0 , std::make_shared<NDataAccessorControl::TLocalManager>(nullptr ), CommonStoragesManager, indexSnapshot, TIndexInfo (tableInfo));
845845 engine.RegisterTable (pathId);
846846 engine.TestingLoad (db);
847847
0 commit comments