diff --git a/influxdb_tsm/src/reader.rs b/influxdb_tsm/src/reader.rs index 1c540c707d..22d6a9841e 100644 --- a/influxdb_tsm/src/reader.rs +++ b/influxdb_tsm/src/reader.rs @@ -459,6 +459,7 @@ impl BlockData { /// overwrites previous values. Therefore, in order to have "last write /// wins" semantics it is important that the provided vector of blocks /// is ordered by the wall-clock time the blocks were created. + #[allow(clippy::manual_flatten)] // https://github.com/rust-lang/rust-clippy/issues/6784 pub fn merge(mut blocks: Vec) -> Self { if blocks.is_empty() { panic!("merge called with zero blocks");