mirror of
https://github.com/milvus-io/milvus.git
synced 2026-07-21 10:15:43 +00:00
Related to #49398 Bump Go module references from pkg/v2 and milvus-proto/go-api/v2 to pkg/v3 and milvus-proto/go-api/v3 so the client tracks the Milvus 3.x release line. This prepares the repository for the upcoming 3.x.y release by aligning imports, module dependencies, and proto API references with the new major-version module paths. --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
37 lines
787 B
Go
37 lines
787 B
Go
package common
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/commonpb"
|
|
)
|
|
|
|
type KeyDataPairs []*commonpb.KeyDataPair
|
|
|
|
func (pairs KeyDataPairs) Clone() KeyDataPairs {
|
|
clone := make(KeyDataPairs, 0, len(pairs))
|
|
for _, pair := range pairs {
|
|
clone = append(clone, &commonpb.KeyDataPair{
|
|
Key: pair.GetKey(),
|
|
Data: CloneByteSlice(pair.GetData()),
|
|
})
|
|
}
|
|
return clone
|
|
}
|
|
|
|
func (pairs KeyDataPairs) ToMap() map[string][]byte {
|
|
ret := make(map[string][]byte)
|
|
for _, pair := range pairs {
|
|
ret[pair.GetKey()] = CloneByteSlice(pair.GetData())
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func (pairs KeyDataPairs) Equal(other KeyDataPairs) bool {
|
|
return reflect.DeepEqual(pairs.ToMap(), other.ToMap())
|
|
}
|
|
|
|
func CloneKeyDataPairs(pairs KeyDataPairs) KeyDataPairs {
|
|
return pairs.Clone()
|
|
}
|