Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: call group count for search_over_groups #2945

Merged
merged 1 commit into from
Dec 14, 2024
Merged
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
3 changes: 2 additions & 1 deletion server/src/operators/qdrant_operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,8 @@ pub async fn search_over_groups_qdrant_query(

let count_limit = if !get_total_pages { 0_u64 } else { 100000_u64 };

let count_future = count_qdrant_query(count_limit, queries.clone(), dataset_config.clone());
let count_future =
count_qdrant_group_query(count_limit, queries.clone(), dataset_config.clone());

let search_point_req_payloads: Vec<QueryPointGroups> = queries
.into_iter()
Expand Down