From c3f24e8d92c8b7e533a76e469d957f69e2004a29 Mon Sep 17 00:00:00 2001 From: groot Date: Tue, 4 Jan 2022 13:58:19 +0800 Subject: [PATCH] [skip e2e] Fix typo for design doc (#14741) Signed-off-by: yhmo --- docs/design_docs/segcore/segment_interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/segcore/segment_interface.md b/docs/design_docs/segcore/segment_interface.md index 8ab5cfb7d4..a6a85c7a98 100644 --- a/docs/design_docs/segcore/segment_interface.md +++ b/docs/design_docs/segcore/segment_interface.md @@ -34,7 +34,7 @@ See design details `${milvus_root}/internal/core/src/segcore/SegmentInterface.h` 8. `vector_search (vec_count, query..., timestamp, bitset, output)`: Search the vector column 1. `vec_count`: specifies how many entities participated in the vector search calculation, the rest of the segments are filtered out because it's timestamp is larger than specified timestamp. This function is mainly used in growing segment as multi version control(MVCC) 2. `query...`: multiple variables jointly specify the parameters and search vector - 3. `timestamp`: timestamp is used for time travelling, filter out data with timestamp. Mainly for sealed segment + 3. `timestamp`: timestamp is used for time traveling, filter out data with timestamp. Mainly for sealed segment 4. `bitset`: calculated bit mask value as an output 5. `output`: output QueryResult 9. `bulk_subscript(FieldOffset|SystemField, seg_offsets..., output)`: