@@ -117,7 +117,7 @@ TEST_F(MergeTreeCompactRewriterTest, TestSimple) {
117117
118118 // generate sorted runs and rewrite
119119 ASSERT_OK_AND_ASSIGN (auto runs, GenerateSortedRuns (table_path, table_schema, /* bucket=*/ 1 ,
120- /* partition=*/ {{" f1" , " 10" }}))
120+ /* partition=*/ {{" f1" , " 10" }}));
121121 ASSERT_OK_AND_ASSIGN (auto compact_result, rewriter->Rewrite (
122122 /* output_level=*/ 5 , /* drop_delete=*/ true , runs));
123123 // check compact result
@@ -214,7 +214,7 @@ TEST_F(MergeTreeCompactRewriterTest, TestNotDropDelete) {
214214
215215 // generate sorted runs and rewrite
216216 ASSERT_OK_AND_ASSIGN (auto runs, GenerateSortedRuns (table_path, table_schema, /* bucket=*/ 1 ,
217- /* partition=*/ {{" f1" , " 10" }}))
217+ /* partition=*/ {{" f1" , " 10" }}));
218218 ASSERT_OK_AND_ASSIGN (auto compact_result, rewriter->Rewrite (
219219 /* output_level=*/ 5 , /* drop_delete=*/ false , runs));
220220 // check compact result
@@ -285,7 +285,7 @@ TEST_F(MergeTreeCompactRewriterTest, TestIOException) {
285285
286286 // generate sorted runs and rewrite
287287 ASSERT_OK_AND_ASSIGN (auto runs, GenerateSortedRuns (table_path, table_schema, /* bucket=*/ 1 ,
288- /* partition=*/ {{" f1" , " 10" }}))
288+ /* partition=*/ {{" f1" , " 10" }}));
289289 // rewrite may trigger I/O exception
290290 ScopeGuard guard ([&io_hook]() { io_hook->Clear (); });
291291 io_hook->Reset (i, IOHook::Mode::RETURN_ERROR );
0 commit comments