Skip to content

Commit f29f6d4

Browse files
g-talbotclaude
andcommitted
style(indexing): re-fmt parquet_merge_executor to latest nightly rustfmt
Same nightly-rustfmt drift as the storekey commit on #6424 (local nightly 2026-05-11 vs CI's 2026-05-17): the `mixed_prefix_ok` binding and the `merge_parquet_split_metadata` call now fit single-line under the newer width heuristics. No behaviour change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 3c60e96 commit f29f6d4

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

quickwit/quickwit-indexing/src/actors/parquet_pipeline/parquet_merge_executor.rs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -237,17 +237,13 @@ impl Handler<ParquetMergeScratch> for ParquetMergeExecutor {
237237
// them at read time), so the input-side equality check in
238238
// `merge_parquet_split_metadata` would spuriously fail. Regular
239239
// merges keep the strict check.
240-
let mixed_prefix_ok = scratch
241-
.merge_operation
242-
.target_prefix_len_override
243-
.is_some();
240+
let mixed_prefix_ok = scratch.merge_operation.target_prefix_len_override.is_some();
244241

245242
let mut merged_splits = Vec::with_capacity(outputs.len());
246243
for output in &outputs {
247-
let mut metadata =
248-
merge_parquet_split_metadata(input_splits, output, mixed_prefix_ok)
249-
.context("failed to build merge output metadata")
250-
.map_err(|e| ActorExitStatus::from(anyhow::anyhow!(e)))?;
244+
let mut metadata = merge_parquet_split_metadata(input_splits, output, mixed_prefix_ok)
245+
.context("failed to build merge output metadata")
246+
.map_err(|e| ActorExitStatus::from(anyhow::anyhow!(e)))?;
251247

252248
// Use the split ID that was assigned when the merge operation was
253249
// planned, rather than the one generated inside

0 commit comments

Comments
 (0)