Files
milvus/pkg/common/key_data_pairs.go
congqixiaandGitHub 7311d450a0 enhance: bump Go dependencies to v3 modules (#49485)
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>
2026-05-01 10:30:13 +08:00

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()
}