Skip to content

Commit

Permalink
Add global data pool
Browse files Browse the repository at this point in the history
  • Loading branch information
viciious committed Nov 2, 2023
1 parent 6513602 commit 6893c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pack_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (data *packData) MarshalMsg(o []byte) ([]byte, error) {
}
}

o = msgp.AppendMapHeader(o, uint32(len(data.indexMap)))
o = msgp.AppendMapHeader(o, uint32(len(data.primaryKeyMap)))
for key, val := range data.primaryKeyMap {
o = msgp.AppendUint64(o, key)
o, _ = msgp.AppendIntf(o, val)
Expand Down

0 comments on commit 6893c03

Please sign in to comment.