Skip to content

Commit d1431a2

Browse files
authored
Revert "Reduce benchmark params count so it can be run (#1319)"
This reverts commit 543b859.
1 parent cf60429 commit d1431a2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ydb/core/tablet_flat/benchmark/b_part_index.cpp

+6-4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ namespace {
7676
UNIT_ASSERT_GE(part->Stat.Bytes, 100ull*1024*1024);
7777
UNIT_ASSERT_LE(part->Stat.Bytes, 100ull*1024*1024 + 10ull*1024*1024);
7878

79+
UNIT_ASSERT_VALUES_EQUAL(part->Slices->size(), 1);
80+
7981
GroupId = TGroupId(groups ? 1 : 0);
8082
}
8183

@@ -240,10 +242,10 @@ BENCHMARK_REGISTER_F(TPartIndexSeekFixture, SeekKey)
240242
BENCHMARK_REGISTER_F(TPartIndexIteratorFixture, DoReads)
241243
->ArgsProduct({
242244
/* b-tree */ {0, 1},
243-
/* groups: */ {1},
244-
/* history: */ {1},
245-
/* reverse: */ {0},
246-
/* ESeek: */ {1},
245+
/* groups: */ {0, 1},
246+
/* history: */ {0, 1},
247+
/* reverse: */ {0, 1},
248+
/* ESeek: */ {1, 2, 3},
247249
/* items */ {1, 10, 100}})
248250
->Unit(benchmark::kMicrosecond);
249251

0 commit comments

Comments
 (0)