You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
db: simplify L0 picked compaction input construction
The newPickedCompactionFromL0 function unnecessarily iterated over the provided
L0CompactionFiles, constructing a []*TableMetadata slice. The L0CompactionFiles
type already provides a []*TableMetadata slice. The slice is only needed to
construct the B-Tree that will back the manifest.LevelSlice, so there's no need
to clone it.
0 commit comments