From 1003f2d5d024c7ad897df03731beedfa7ccd0f5c Mon Sep 17 00:00:00 2001 From: zwang28 <84491488@qq.com> Date: Tue, 8 Oct 2024 15:00:15 +0800 Subject: [PATCH] fix tests --- src/storage/hummock_test/src/sync_point_tests.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/storage/hummock_test/src/sync_point_tests.rs b/src/storage/hummock_test/src/sync_point_tests.rs index 84cdf5513cdeb..637fe5966f629 100644 --- a/src/storage/hummock_test/src/sync_point_tests.rs +++ b/src/storage/hummock_test/src/sync_point_tests.rs @@ -201,7 +201,7 @@ pub async fn compact_once( compact_task.compaction_filter_mask = compaction_filter_flag.bits(); // 3. compact let (_tx, rx) = tokio::sync::oneshot::channel(); - let ((result_task, task_stats), _) = compact( + let ((result_task, task_stats, object_timestamps), _) = compact( compact_ctx, compact_task.clone(), rx, @@ -216,6 +216,7 @@ pub async fn compact_once( result_task.task_status, result_task.sorted_output_ssts, Some(to_prost_table_stats_map(task_stats)), + object_timestamps, ) .await .unwrap();