Skip to content

Commit 672eec8

Browse files
committed
wip
1 parent d8674e3 commit 672eec8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/compaction/leveled/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ use crate::{
1515
HashSet, TableId,
1616
};
1717

18-
#[doc(hidden)]
19-
pub const NAME: &str = "LeveledCompaction";
20-
2118
/// Tries to find the most optimal compaction set from one level into the other.
2219
fn pick_minimal_compaction(
2320
curr_run: &Run<Table>,
@@ -104,6 +101,9 @@ fn pick_minimal_compaction(
104101
}
105102
}
106103

104+
#[doc(hidden)]
105+
pub const NAME: &str = "LeveledCompaction";
106+
107107
/// Leveled compaction strategy (LCS)
108108
///
109109
/// When a level reaches some threshold size, parts of it are merged into overlapping tables in the next level.

0 commit comments

Comments
 (0)