Skip to content

Commit d474463

Browse files
committed
style(planner): fix rustfmt formatting
1 parent e1dc20a commit d474463

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

src/planner.rs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)