chore: remove irrelaevant comments (#4791)

pull/24376/head
Nga Tran 2022-06-06 20:43:56 -04:00 committed by GitHub
parent 3e89daa0d4
commit b60e1be0cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -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() {