Skip to content

Commit c3fc790

Browse files
committed
appease linter again
1 parent 727f085 commit c3fc790

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

quickwit/quickwit-metastore/src/metastore/file_backed/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,7 @@ impl FileBackedMetastore {
261261
}
262262

263263
async fn read<T, F>(&self, index_uid: &IndexUid, view: F) -> MetastoreResult<T>
264-
where
265-
F: FnOnce(&FileBackedIndex) -> MetastoreResult<T>,
266-
{
264+
where F: FnOnce(&FileBackedIndex) -> MetastoreResult<T> {
267265
self.read_any(
268266
index_uid.index_id.as_str(),
269267
Some(index_uid.incarnation_id),

quickwit/quickwit-metastore/src/metastore/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -697,8 +697,7 @@ impl ListSplitsResponseExt for ListSplitsResponse {
697697
// Parquet Splits Extension Traits (unified via macros)
698698
// =====================================================
699699

700-
use quickwit_parquet_engine::split::ParquetSplitMetadata;
701-
use quickwit_parquet_engine::split::ParquetSplitRecord;
700+
use quickwit_parquet_engine::split::{ParquetSplitMetadata, ParquetSplitRecord};
702701

703702
/// Helper trait to build stage requests for parquet splits.
704703
pub trait StageParquetSplitsRequestExt: Sized {

quickwit/quickwit-parquet-engine/src/ingest/sketch_processor.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ impl SketchParquetIngestProcessor {
112112
"sketch array length mismatch: keys and counts must have same length"
113113
);
114114
return Err(IngestError::SchemaValidation(format!(
115-
"sketch array length mismatch at row {}: keys has {} elements but counts has {}",
115+
"sketch array length mismatch at row {}: keys has {} elements but counts has \
116+
{}",
116117
row, keys_len, counts_len,
117118
)));
118119
}

0 commit comments

Comments
 (0)