Skip to content

Commit f828b5b

Browse files
committed
Finally ran cargo hack
Signed-off-by: Adam Gutglick <[email protected]>
1 parent 73cd0ba commit f828b5b

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

vortex-btrblocks/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ pub trait Compressor {
281281
/// Evaluates all available schemes against the provided statistics and returns
282282
/// the one with the highest compression ratio. Falls back to the default scheme
283283
/// if no scheme provides compression benefits.
284-
#[expect(clippy::cognitive_complexity)]
284+
#[allow(clippy::cognitive_complexity)]
285285
fn choose_scheme(
286286
stats: &Self::StatsType,
287287
is_sample: bool,

vortex-duckdb/src/convert/expr.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ fn like_pattern_str(value: &duckdb::Expression) -> VortexResult<Option<String>>
4343
}
4444
}
4545

46+
#[expect(clippy::cognitive_complexity)]
4647
pub fn try_from_bound_expression(value: &duckdb::Expression) -> VortexResult<Option<Expression>> {
4748
let Some(value) = value.as_class() else {
4849
tracing::debug!("no expression class id {:?}", value.as_class_id());

vortex-io/src/file/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ impl State {
125125
}
126126
}
127127

128-
#[expect(clippy::cognitive_complexity)]
128+
#[allow(clippy::cognitive_complexity)]
129129
fn on_event(&mut self, event: ReadEvent) {
130130
tracing::debug!(?event, "Received ReadEvent");
131131
match event {

vortex-io/src/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ impl<T> Drop for InstrumentedReadAt<T>
181181
where
182182
T: VortexReadAt,
183183
{
184-
#[expect(clippy::cognitive_complexity)]
184+
#[allow(clippy::cognitive_complexity)]
185185
fn drop(&mut self) {
186186
let sizes = self.sizes.snapshot();
187187
tracing::debug!("Reads: {}", self.sizes.count());

0 commit comments

Comments
 (0)