Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
JinheLin committed Dec 27, 2024
1 parent 423fc5b commit 46242bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbms/src/Storages/KVStore/tests/bench_region_block_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ BENCHMARK_DEFINE_F(RegionBlockReaderBenchTest, CommonHandle)
auto [table_info, fields] = getNormalTableInfoFields({2, 3, 4}, true);
encodeColumns(table_info, fields, RowEncodeVersion::RowV2, num_rows);
auto decoding_schema = getDecodingStorageSchemaSnapshot(table_info);
for (auto _ : state)
for (auto _ : state) // NOLINT
{
decodeColumns(decoding_schema, true);
}
Expand All @@ -149,7 +149,7 @@ BENCHMARK_DEFINE_F(RegionBlockReaderBenchTest, PKIsNotHandle)
auto [table_info, fields] = getNormalTableInfoFields({MutSup::extra_handle_id}, false);
encodeColumns(table_info, fields, RowEncodeVersion::RowV2, num_rows);
auto decoding_schema = getDecodingStorageSchemaSnapshot(table_info);
for (auto _ : state)
for (auto _ : state) // NOLINT
{
decodeColumns(decoding_schema, true);
}
Expand All @@ -162,7 +162,7 @@ BENCHMARK_DEFINE_F(RegionBlockReaderBenchTest, PKIsHandle)
auto [table_info, fields] = getNormalTableInfoFields({2}, false);
encodeColumns(table_info, fields, RowEncodeVersion::RowV2, num_rows);
auto decoding_schema = getDecodingStorageSchemaSnapshot(table_info);
for (auto _ : state)
for (auto _ : state) // NOLINT
{
decodeColumns(decoding_schema, true);
}
Expand Down

0 comments on commit 46242bc

Please sign in to comment.