milvus/pkg/common/key_value_pairs.go
Spade A faeb7fd410
feat: impl StructArray -- create schema, insert, and retrieve data (#42855)
Ref https://github.com/milvus-io/milvus/issues/42148

https://github.com/milvus-io/milvus/pull/42406 impls the segcore part of
storage for handling with VectorArray.
This PR:
1. impls the go part of storage for VectorArray
2. impls the collection creation with StructArrayField and VectorArray
3. insert and retrieve data from the collection.

---------

Signed-off-by: SpadeA <tangchenjie1210@gmail.com>
Signed-off-by: SpadeA-Tang <tangchenjie1210@gmail.com>
Signed-off-by: SpadeA-Tang <u6748471@anu.edu.au>
2025-07-27 01:30:55 +08:00

40 lines
806 B
Go

package common
import (
"reflect"
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
)
type KeyValuePairs []*commonpb.KeyValuePair
func (pairs KeyValuePairs) Clone() KeyValuePairs {
if pairs == nil {
return nil
}
clone := make(KeyValuePairs, 0, len(pairs))
for _, pair := range pairs {
clone = append(clone, &commonpb.KeyValuePair{
Key: pair.GetKey(),
Value: pair.GetValue(),
})
}
return clone
}
func (pairs KeyValuePairs) ToMap() map[string]string {
ret := make(map[string]string)
for _, pair := range pairs {
ret[pair.GetKey()] = pair.GetValue()
}
return ret
}
func (pairs KeyValuePairs) Equal(other KeyValuePairs) bool {
return reflect.DeepEqual(pairs.ToMap(), other.ToMap())
}
func CloneKeyValuePairs(pairs KeyValuePairs) KeyValuePairs {
return pairs.Clone()
}