Skip to content

Commit e29248a

Browse files
PQ tablet removes blobs asynchronously (#13937)
1 parent ff877e9 commit e29248a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/client/topic/ut/topic_to_table_ut.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ class TFixture : public NUnitTest::TBaseFixture {
246246
ui64 GetTopicTabletId(const TActorId& actorId,
247247
const TString& topicPath,
248248
ui32 partition);
249-
TVector<TString> GetTabletKeys(const TActorId& actorId,
250-
ui64 tabletId);
249+
std::vector<std::string> GetTabletKeys(const TActorId& actorId,
250+
ui64 tabletId);
251251
NPQ::TWriteId GetTransactionWriteId(const TActorId& actorId,
252252
ui64 tabletId);
253253
void SendLongTxLockStatus(const TActorId& actorId,
@@ -1047,7 +1047,8 @@ ui64 TFixture::GetTopicTabletId(const TActorId& actorId, const TString& topicPat
10471047
return Max<ui64>();
10481048
}
10491049

1050-
TVector<TString> TFixture::GetTabletKeys(const TActorId& actorId, ui64 tabletId)
1050+
std::vector<std::string> TFixture::GetTabletKeys(const TActorId& actorId,
1051+
ui64 tabletId)
10511052
{
10521053
using TEvKeyValue = NKikimr::TEvKeyValue;
10531054

@@ -1072,7 +1073,7 @@ TVector<TString> TFixture::GetTabletKeys(const TActorId& actorId, ui64 tabletId)
10721073
UNIT_ASSERT_VALUES_EQUAL(response->Record.GetCookie(), 12345);
10731074
UNIT_ASSERT_VALUES_EQUAL(response->Record.ReadRangeResultSize(), 1);
10741075

1075-
TVector<TString> keys;
1076+
std::vector<std::string> keys;
10761077

10771078
auto& result = response->Record.GetReadRangeResult(0);
10781079
for (size_t i = 0; i < result.PairSize(); ++i) {
@@ -1754,7 +1755,7 @@ void TFixture::CheckTabletKeys(const TString& topicName)
17541755
};
17551756

17561757
bool found;
1757-
TVector<TString> keys;
1758+
std::vector<std::string> keys;
17581759
for (size_t i = 0; i < 20; ++i) {
17591760
keys = GetTabletKeys(edge, tabletId);
17601761

0 commit comments

Comments
 (0)