mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-29 18:38:44 +08:00
2da289c5b5
issue: #33419 Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
141 lines
3.6 KiB
Go
141 lines
3.6 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 (
|
|
"fmt"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/milvus-io/milvus/client/v2/entity"
|
|
)
|
|
|
|
// ColumnVarCharArray generated columns type for VarChar
|
|
type ColumnVarCharArray struct {
|
|
ColumnBase
|
|
name string
|
|
values [][][]byte
|
|
}
|
|
|
|
// Name returns column name
|
|
func (c *ColumnVarCharArray) Name() string {
|
|
return c.name
|
|
}
|
|
|
|
// Type returns column entity.FieldType
|
|
func (c *ColumnVarCharArray) Type() entity.FieldType {
|
|
return entity.FieldTypeArray
|
|
}
|
|
|
|
// Len returns column values length
|
|
func (c *ColumnVarCharArray) Len() int {
|
|
return len(c.values)
|
|
}
|
|
|
|
func (c *ColumnVarCharArray) Slice(start, end int) Column {
|
|
l := c.Len()
|
|
if start > l {
|
|
start = l
|
|
}
|
|
if end == -1 || end > l {
|
|
end = l
|
|
}
|
|
return &ColumnVarCharArray{
|
|
ColumnBase: c.ColumnBase,
|
|
name: c.name,
|
|
values: c.values[start:end],
|
|
}
|
|
}
|
|
|
|
// Get returns value at index as interface{}.
|
|
func (c *ColumnVarCharArray) Get(idx int) (interface{}, error) {
|
|
var r []string // use default value
|
|
if idx < 0 || idx >= c.Len() {
|
|
return r, errors.New("index out of range")
|
|
}
|
|
return c.values[idx], nil
|
|
}
|
|
|
|
// FieldData return column data mapped to schemapb.FieldData
|
|
func (c *ColumnVarCharArray) FieldData() *schemapb.FieldData {
|
|
fd := &schemapb.FieldData{
|
|
Type: schemapb.DataType_Array,
|
|
FieldName: c.name,
|
|
}
|
|
|
|
data := make([]*schemapb.ScalarField, 0, c.Len())
|
|
for _, arr := range c.values {
|
|
converted := make([]string, 0, c.Len())
|
|
for i := 0; i < len(arr); i++ {
|
|
converted = append(converted, string(arr[i]))
|
|
}
|
|
data = append(data, &schemapb.ScalarField{
|
|
Data: &schemapb.ScalarField_StringData{
|
|
StringData: &schemapb.StringArray{
|
|
Data: converted,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
fd.Field = &schemapb.FieldData_Scalars{
|
|
Scalars: &schemapb.ScalarField{
|
|
Data: &schemapb.ScalarField_ArrayData{
|
|
ArrayData: &schemapb.ArrayArray{
|
|
Data: data,
|
|
ElementType: schemapb.DataType_VarChar,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
return fd
|
|
}
|
|
|
|
// ValueByIdx returns value of the provided index
|
|
// error occurs when index out of range
|
|
func (c *ColumnVarCharArray) ValueByIdx(idx int) ([][]byte, error) {
|
|
var r [][]byte // use default value
|
|
if idx < 0 || idx >= c.Len() {
|
|
return r, errors.New("index out of range")
|
|
}
|
|
return c.values[idx], nil
|
|
}
|
|
|
|
// AppendValue append value into column
|
|
func (c *ColumnVarCharArray) AppendValue(i interface{}) error {
|
|
v, ok := i.([][]byte)
|
|
if !ok {
|
|
return fmt.Errorf("invalid type, expected []string, got %T", i)
|
|
}
|
|
c.values = append(c.values, v)
|
|
|
|
return nil
|
|
}
|
|
|
|
// Data returns column data
|
|
func (c *ColumnVarCharArray) Data() [][][]byte {
|
|
return c.values
|
|
}
|
|
|
|
// NewColumnVarChar auto generated constructor
|
|
func NewColumnVarCharArray(name string, values [][][]byte) *ColumnVarCharArray {
|
|
return &ColumnVarCharArray{
|
|
name: name,
|
|
values: values,
|
|
}
|
|
}
|