From b60e1be0cf925b12529664f63db4e91124b20c65 Mon Sep 17 00:00:00 2001 From: Nga Tran Date: Mon, 6 Jun 2022 20:43:56 -0400 Subject: [PATCH] chore: remove irrelaevant comments (#4791) --- compactor/src/compact.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/compactor/src/compact.rs b/compactor/src/compact.rs index 3361f57239..949722354c 100644 --- a/compactor/src/compact.rs +++ b/compactor/src/compact.rs @@ -387,7 +387,6 @@ impl Compactor { compact_and_upgrade.sequencer_id = Some(parquet_files[0].sequencer_id); // Group overlapped files - // Each group will be limited by thier size and number of files let overlapped_file_groups = Self::overlapped_groups(parquet_files); // Group time-contiguous non-overlapped groups if their total size is smaller than a threshold @@ -2187,9 +2186,7 @@ mod tests { } // This tests - // 1. overlapped_groups which focuses on the detail of both its children: - // 1.a. group_potential_duplicates that groups files into overlapped groups - // 1.b. split_overlapped_groups that splits each overlapped group further to meet size and/or file limit + // 1. overlapped_groups // 2. group_small_contiguous_groups that merges non-overlapped group into a larger one if they meet size and file limit #[test] fn test_group_small_contiguous_overlapped_groups_no_group() {