mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
Related to #42148 Add comprehensive support for struct array field type in the Go SDK, including data structure definitions, column operations, schema construction, and full test coverage. **Struct Array Column Implementation (`client/column/struct.go`)** - Add `columnStructArray` type to handle struct array fields - Implement `Column` interface methods: - `NewColumnStructArray()`: Create new struct array column from sub-fields - `Name()`, `Type()`: Basic metadata accessors - `Slice()`: Support slicing across all sub-fields - `FieldData()`: Convert to protobuf `StructArrayField` format - `Get()`: Retrieve struct values as `map[string]any` - `ValidateNullable()`, `CompactNullableValues()`: Nullable support - Placeholder implementations for unsupported operations (AppendValue, GetAsX, IsNull, AppendNull) **Struct Array Parsing (`client/column/columns.go`)** - Add `parseStructArrayData()` function to parse `StructArrayField` from protobuf - Update `FieldDataColumn()` to detect and parse struct array fields - Support range-based slicing for struct array data --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
139 lines
3.4 KiB
Go
139 lines
3.4 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package column
|
|
|
|
import (
|
|
"github.com/cockroachdb/errors"
|
|
"github.com/samber/lo"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/milvus-io/milvus/client/v2/entity"
|
|
)
|
|
|
|
type columnStructArray struct {
|
|
fields []Column
|
|
name string
|
|
}
|
|
|
|
func NewColumnStructArray(name string, fields []Column) Column {
|
|
return &columnStructArray{
|
|
fields: fields,
|
|
name: name,
|
|
}
|
|
}
|
|
|
|
func (c *columnStructArray) Name() string {
|
|
return c.name
|
|
}
|
|
|
|
func (c *columnStructArray) Type() entity.FieldType {
|
|
return entity.FieldTypeArray
|
|
}
|
|
|
|
func (c *columnStructArray) Len() int {
|
|
for _, field := range c.fields {
|
|
return field.Len()
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (c *columnStructArray) Slice(start, end int) Column {
|
|
fields := make([]Column, len(c.fields))
|
|
for idx, subField := range c.fields {
|
|
fields[idx] = subField.Slice(start, end)
|
|
}
|
|
c.fields = fields
|
|
return c
|
|
}
|
|
|
|
func (c *columnStructArray) FieldData() *schemapb.FieldData {
|
|
return &schemapb.FieldData{
|
|
Type: schemapb.DataType_Array,
|
|
FieldName: c.name,
|
|
Field: &schemapb.FieldData_StructArrays{
|
|
StructArrays: &schemapb.StructArrayField{
|
|
Fields: lo.Map(c.fields, func(field Column, _ int) *schemapb.FieldData {
|
|
return field.FieldData()
|
|
}),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func (c *columnStructArray) AppendValue(value any) error {
|
|
return errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) Get(idx int) (any, error) {
|
|
m := make(map[string]any)
|
|
for _, field := range c.fields {
|
|
v, err := field.Get(idx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
m[field.Name()] = v
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func (c *columnStructArray) GetAsInt64(idx int) (int64, error) {
|
|
return 0, errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) GetAsString(idx int) (string, error) {
|
|
return "", errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) GetAsDouble(idx int) (float64, error) {
|
|
return 0, errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) GetAsBool(idx int) (bool, error) {
|
|
return false, errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) IsNull(idx int) (bool, error) {
|
|
return false, errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) AppendNull() error {
|
|
return errors.New("not implemented")
|
|
}
|
|
|
|
func (c *columnStructArray) Nullable() bool {
|
|
return false
|
|
}
|
|
|
|
func (c *columnStructArray) SetNullable(nullable bool) {
|
|
// Shall not be set
|
|
}
|
|
|
|
func (c *columnStructArray) ValidateNullable() error {
|
|
for _, field := range c.fields {
|
|
if err := field.ValidateNullable(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *columnStructArray) CompactNullableValues() {
|
|
for _, field := range c.fields {
|
|
field.CompactNullableValues()
|
|
}
|
|
}
|