File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -457,8 +457,12 @@ async fn adaptive_filtered_execute(
457457 . fetch_by_keys ( & top_keys, & params. key_col , None )
458458 . await ?;
459459
460- let result_batches =
461- attach_distances ( data_batches, lookup_key_col_idx, & key_to_dist, & params. schema ) ?;
460+ let result_batches = attach_distances (
461+ data_batches,
462+ lookup_key_col_idx,
463+ & key_to_dist,
464+ & params. schema ,
465+ ) ?;
462466
463467 tracing:: Span :: current ( ) . record (
464468 "usearch.result_count" ,
@@ -498,8 +502,12 @@ async fn adaptive_filtered_execute(
498502 . fetch_by_keys ( & matches. keys , & params. key_col , None )
499503 . await ?;
500504
501- let result_batches =
502- attach_distances ( data_batches, lookup_key_col_idx, & key_to_dist, & params. schema ) ?;
505+ let result_batches = attach_distances (
506+ data_batches,
507+ lookup_key_col_idx,
508+ & key_to_dist,
509+ & params. schema ,
510+ ) ?;
503511
504512 tracing:: Span :: current ( ) . record (
505513 "usearch.result_count" ,
You can’t perform that action at this time.
0 commit comments