Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 54 additions & 54 deletions go-tipb/spfresh_search.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proto/spfresh_search.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ message SPFreshSearchRequest {
int64 table_id = 2;
int64 index_id = 3;
uint64 start_ts = 4;
uint32 top_k = 5;
uint64 top_k = 5;

// query_vector_f32_le is f32 little-endian bytes, without the dims prefix.
bytes query_vector_f32_le = 6;
Expand Down
44 changes: 29 additions & 15 deletions scripts/proto.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1952,12 +1952,14 @@
{
"id": 3,
"name": "term",
"type": "FTSBooleanTerm"
"type": "FTSBooleanTerm",
"oneof_parent": "node"
},
{
"id": 4,
"name": "sub_expression",
"type": "FTSBooleanQuery"
"type": "FTSBooleanQuery",
"oneof_parent": "node"
}
]
},
Expand Down Expand Up @@ -2187,17 +2189,20 @@
{
"id": 2,
"name": "ann_query_info",
"type": "ANNQueryInfo"
"type": "ANNQueryInfo",
"oneof_parent": "index"
},
{
"id": 3,
"name": "inverted_query_info",
"type": "InvertedQueryInfo"
"type": "InvertedQueryInfo",
"oneof_parent": "index"
},
{
"id": 4,
"name": "fts_query_info",
"type": "FTSQueryInfo"
"type": "FTSQueryInfo",
"oneof_parent": "index"
}
]
},
Expand Down Expand Up @@ -2904,12 +2909,14 @@
{
"id": 6,
"name": "tiflash_scan_context",
"type": "TiFlashScanContext"
"type": "TiFlashScanContext",
"oneof_parent": "DetailInfo"
},
{
"id": 10,
"name": "columnar_scan_context",
"type": "ColumnarScanContext"
"type": "ColumnarScanContext",
"oneof_parent": "DetailInfo"
},
{
"id": 7,
Expand Down Expand Up @@ -4139,17 +4146,20 @@
{
"id": 1,
"name": "scan_object",
"type": "ScanAccessObject"
"type": "ScanAccessObject",
"oneof_parent": "access_object"
},
{
"id": 2,
"name": "dynamic_partition_objects",
"type": "DynamicPartitionAccessObjects"
"type": "DynamicPartitionAccessObjects",
"oneof_parent": "access_object"
},
{
"id": 3,
"name": "other_object",
"type": "string"
"type": "string",
"oneof_parent": "access_object"
}
]
},
Expand Down Expand Up @@ -8468,7 +8478,7 @@
{
"id": 5,
"name": "top_k",
"type": "uint32"
"type": "uint64"
},
{
"id": 6,
Expand Down Expand Up @@ -9393,22 +9403,26 @@
{
"id": 1,
"name": "record",
"type": "TopSQLRecord"
"type": "TopSQLRecord",
"oneof_parent": "resp_oneof"
},
{
"id": 2,
"name": "sql_meta",
"type": "SQLMeta"
"type": "SQLMeta",
"oneof_parent": "resp_oneof"
},
{
"id": 3,
"name": "plan_meta",
"type": "PlanMeta"
"type": "PlanMeta",
"oneof_parent": "resp_oneof"
},
{
"id": 4,
"name": "ru_record",
"type": "TopRURecord"
"type": "TopRURecord",
"oneof_parent": "resp_oneof"
}
]
}
Expand Down
Loading