milvus/client/column/generic_base.go
congqixia 629da61617
enhance: [2.5][GoSDK] sync milvusclient patches for 2.5.1 (#40410)
Cherry pick from master
pr: #40268 #40284 #40328 #40373 #40381

------------------------------------------
#### fix: [GoSDK] Pass base64 passwd content instead of raw data
(#40268)

Related to #40261

Also add some options for create collection options and refine some
behavior

------------------------------------------
#### fix: [GoSDK] Return role without grants (#40284)

Related to #40274

Previousy DescribeRole returns only roles with grants, this PR add
select role action to check role existence.

Also added database properties related option

-----------------------------------------
#### fix: [GoSDK] Pass only valid data for nullable column (#40328)

Related to #40327

-----------------------------------------
#### enhance: [GoSDK] Add DescribeReplica API & sync rbac v2 (#40373)

Related to #31293 #37031

This PR:
- Add DescribeReplica API
- Add unified RBAC v2 API names(AddPrivilegesToGroup,
RemovePrivilegesFromGroup, GrantPrivilegeV2, RevokePrivilegeV2)
- Mark old ones deprecated

-----------------------------------------
#### enhance: [GoSDK] support update ts caching policy(#40381)

Related to #39093

This PR add update timestamp check and retry policy according to the
design of the related issue

-----------------------------------------

---------

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-03-06 17:48:03 +08:00

198 lines
4.7 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/milvus-io/milvus-proto/go-api/v2/schemapb"
"github.com/milvus-io/milvus/client/v2/entity"
)
var _ Column = (*genericColumnBase[any])(nil)
// genericColumnBase implements `Column` interface
// it provides the basic function for each scalar params
type genericColumnBase[T any] struct {
name string
fieldType entity.FieldType
values []T
nullable bool
validData []bool
}
// Name returns column name.
func (c *genericColumnBase[T]) Name() string {
return c.name
}
// Type returns corresponding field type.
// note that: it is not necessary to be 1-on-1 mapping
// say, `[]byte` could be lots of field type.
func (c *genericColumnBase[T]) Type() entity.FieldType {
return c.fieldType
}
func (c *genericColumnBase[T]) Len() int {
if c.validData != nil {
return len(c.validData)
}
return len(c.values)
}
func (c *genericColumnBase[T]) AppendValue(a any) error {
if a == nil {
return c.AppendNull()
}
v, ok := a.(T)
if !ok {
return errors.Newf("unexpected append value type %T, field type %v", a, c.fieldType)
}
c.values = append(c.values, v)
if c.nullable {
c.validData = append(c.validData, true)
}
return nil
}
func (c *genericColumnBase[T]) Slice(start, end int) Column {
return c.slice(start, end)
}
func (c *genericColumnBase[T]) slice(start, end int) *genericColumnBase[T] {
l := c.Len()
if start > l {
start = l
}
if end == -1 || end > l {
end = l
}
result := &genericColumnBase[T]{
name: c.name,
fieldType: c.fieldType,
values: c.values[start:end],
nullable: c.nullable,
}
if c.nullable {
result.validData = c.validData[start:end]
}
return result
}
func (c *genericColumnBase[T]) FieldData() *schemapb.FieldData {
fd := values2FieldData(c.values, c.fieldType, 0)
fd.FieldName = c.name
fd.Type = schemapb.DataType(c.fieldType)
if c.nullable {
fd.ValidData = c.validData
}
return fd
}
func (c *genericColumnBase[T]) rangeCheck(idx int) error {
if idx < 0 || idx >= c.Len() {
return errors.Newf("index %d out of range[0, %d)", idx, c.Len())
}
return nil
}
func (c *genericColumnBase[T]) Get(idx int) (any, error) {
if err := c.rangeCheck(idx); err != nil {
return nil, err
}
return c.values[idx], nil
}
func (c *genericColumnBase[T]) GetAsInt64(idx int) (int64, error) {
if err := c.rangeCheck(idx); err != nil {
return 0, err
}
return value2Type[T, int64](c.values[idx])
}
func (c *genericColumnBase[T]) GetAsString(idx int) (string, error) {
if err := c.rangeCheck(idx); err != nil {
return "", err
}
return value2Type[T, string](c.values[idx])
}
func (c *genericColumnBase[T]) GetAsDouble(idx int) (float64, error) {
if err := c.rangeCheck(idx); err != nil {
return 0, err
}
return value2Type[T, float64](c.values[idx])
}
func (c *genericColumnBase[T]) GetAsBool(idx int) (bool, error) {
if err := c.rangeCheck(idx); err != nil {
return false, err
}
return value2Type[T, bool](c.values[idx])
}
func (c *genericColumnBase[T]) Value(idx int) (T, error) {
var z T
if err := c.rangeCheck(idx); err != nil {
return z, err
}
return c.values[idx], nil
}
func (c *genericColumnBase[T]) Data() []T {
return c.values
}
func (c *genericColumnBase[T]) MustValue(idx int) T {
if idx < 0 || idx > c.Len() {
panic("index out of range")
}
return c.values[idx]
}
func (c *genericColumnBase[T]) AppendNull() error {
if !c.nullable {
return errors.New("append null to not nullable column")
}
// var v T
c.validData = append(c.validData, true)
// c.values = append(c.values, v)
return nil
}
func (c *genericColumnBase[T]) IsNull(idx int) (bool, error) {
if err := c.rangeCheck(idx); err != nil {
return false, err
}
if !c.nullable {
return false, nil
}
return !c.validData[idx], nil
}
func (c *genericColumnBase[T]) Nullable() bool {
return c.nullable
}
func (c *genericColumnBase[T]) withValidData(validData []bool) {
if len(validData) > 0 {
c.nullable = true
c.validData = validData
}
}