diff options
| author | 2026-03-05 19:45:55 +0800 | |
|---|---|---|
| committer | 2026-03-05 19:45:55 +0800 | |
| commit | 52d09308c07722daaeb66b5c4d65a91d460abd5d (patch) | |
| tree | a2e75d8c78dc597575a440755e15722393f22872 /format/pack/ingest/thin_fix.go | |
| parent | format/pack/ingest: Optimize writes (diff) | |
| signature | No signature | |
format/pack/ingest: That was silly, obviously just use the ObjectID
Diffstat (limited to 'format/pack/ingest/thin_fix.go')
| -rw-r--r-- | format/pack/ingest/thin_fix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/format/pack/ingest/thin_fix.go b/format/pack/ingest/thin_fix.go index e605c3f2..436d5c88 100644 --- a/format/pack/ingest/thin_fix.go +++ b/format/pack/ingest/thin_fix.go @@ -98,7 +98,7 @@ func appendBaseObject(state *ingestState, id objectid.ObjectID, realType objectt recordIdx := len(state.records) state.records = append(state.records, record) state.offsetToRecord[start] = recordIdx - state.objectToRecord[id.String()] = recordIdx + state.objectToRecord[id] = recordIdx state.baseCache.add(recordIdx, realType, content) return recordIdx, nil |
