1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-03-31 09:42:09 +02:00

hinted indexed map size

This commit is contained in:
Gani Georgiev 2022-12-20 20:25:38 +02:00
parent 15c05b9679
commit 3449084e54

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