hinted indexed map size

This commit is contained in:
Gani Georgiev 2022-12-20 20:25:38 +02:00
parent 15c05b9679
commit 3449084e54
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ func (m *Record) MergeExpand(expand map[string]any) {
continue continue
} }
oldIndexed := map[string]*Record{} oldIndexed := make(map[string]*Record, len(oldSlice))
for _, oldRecord := range oldSlice { for _, oldRecord := range oldSlice {
oldIndexed[oldRecord.Id] = oldRecord oldIndexed[oldRecord.Id] = oldRecord
} }