Skip to content

Commit ce6e17e

Browse files
fix build
1 parent 79fc583 commit ce6e17e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ydb/core/kqp/ut/olap/write_ut.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ Y_UNIT_TEST_SUITE(KqpOlapWrite) {
201201
Tests::NCommon::TLoggerInit(kikimr).Initialize();
202202
TTypedLocalHelper helper("Utf8", kikimr);
203203
helper.CreateTestOlapTable();
204-
auto writeGuard = helper.StartWriting("/Root/olapStore/olapTable");
205-
writeGuard.FillTable("field", NArrow::NConstruction::TStringPoolFiller(1, 1, "aaa", 1), 0, 800000);
204+
auto writeSession = helper.StartWriting("/Root/olapStore/olapTable");
205+
writeSession.FillTable("field", NArrow::NConstruction::TStringPoolFiller(1, 1, "aaa", 1), 0, 800000);
206206
Sleep(TDuration::Seconds(1));
207-
writeGuard.FillTable("field", NArrow::NConstruction::TStringPoolFiller(1, 1, "bbb", 1), 0.5, 800000);
207+
writeSession.FillTable("field", NArrow::NConstruction::TStringPoolFiller(1, 1, "bbb", 1), 0.5, 800000);
208208
Sleep(TDuration::Seconds(1));
209-
writeGuard.FillTable("field", NArrow::NConstruction::TStringPoolFiller(1, 1, "ccc", 1), 0.75, 800000);
209+
writeSession.FillTable("field", NArrow::NConstruction::TStringPoolFiller(1, 1, "ccc", 1), 0.75, 800000);
210210
Sleep(TDuration::Seconds(1));
211211
writeSession.Finalize();
212212

0 commit comments

Comments
 (0)