A cloud-native vector database, storage for next generation AI applications
30.69k
stars
2.93k
forks
source link
[Bug]: [GoSDK] Insert rows data with varchar field gets error: param column varchar has type string but collection field definition is string #33457
Closed
ThreadDao closed 1 month ago
Is there an existing issue for this?
Environment
Current Behavior
case:
rows data generation:
type BaseRow struct { Bool bool
json:"bool,omitempty" milvus:"name:bool"
Int8 int8json:"int8,omitempty" milvus:"name:int8"
Int16 int16json:"int16,omitempty" milvus:"name:int16"
Int32 int32json:"int32,omitempty" milvus:"name:int32"
Int64 int64json:"int64,omitempty" milvus:"name:int64"
Float float32json:"float,omitempty" milvus:"name:float"
Double float64json:"double,omitempty" milvus:"name:double"
Varchar stringjson:"varchar,omitempty" milvus:"name:varchar"
JSON JSONStructjson:"json,omitempty" milvus:"name:json"
FloatVec []float32json:"floatVec,omitempty" milvus:"name:floatVec"
Fp16Vec []bytejson:"fp16Vec,omitempty" milvus:"name:fp16Vec"
Bf16Vec []bytejson:"bf16Vec,omitempty" milvus:"name:bf16Vec"
BinaryVec []bytejson:"binaryVec,omitempty" milvus:"name:binaryVec"
SparseVec entity.SparseEmbeddingjson:"sparseVec,omitempty" milvus:"name:sparseVec"
Array Dynamic }