mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
dedup
This commit is contained in:
parent
f9513ed0bc
commit
bfd2856e67
1 changed files with 2 additions and 2 deletions
4
api.go
4
api.go
|
|
@ -2208,7 +2208,7 @@ func mergeIDLists(dst []uint64, src []uint64) []uint64 {
|
|||
}
|
||||
prev = dst[i]
|
||||
}
|
||||
return dst
|
||||
return dst[:n]
|
||||
}
|
||||
|
||||
// mergeKeyLists merges a list of string IDs into another list, removing
|
||||
|
|
@ -2228,7 +2228,7 @@ func mergeKeyLists(dst []string, src []string) []string {
|
|||
}
|
||||
prev = dst[i]
|
||||
}
|
||||
return dst
|
||||
return dst[:n]
|
||||
}
|
||||
|
||||
// MutexCheckNode checks for collisions in a given mutex field. The response is
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue