From 0cefc7b09e371e24d95a280c2abbce474761450e Mon Sep 17 00:00:00 2001 From: Buqian Zheng Date: Thu, 7 Mar 2024 16:05:00 +0800 Subject: [PATCH] update comment of PlaceholderValue::values Signed-off-by: Buqian Zheng --- proto/common.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/common.proto b/proto/common.proto index 583cc28..af0c345 100644 --- a/proto/common.proto +++ b/proto/common.proto @@ -138,9 +138,9 @@ enum PlaceholderType { message PlaceholderValue { string tag = 1; PlaceholderType type = 2; - // dense vector: values is a 2d-array of nq rows, every row contains a query vector - // sparse vector: values contains exactly 1 bytes array, which is the byte - // representation of SparseFloatArray in schema.proto + // values is a 2d-array of nq rows, every row contains a query vector. + // for dense vector, all rows are of the same length; for sparse vector, + // the length of each row may vary depending on their number of non-zeros. repeated bytes values = 3; }