File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
vortex-duckdb/src/convert Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ fn like_pattern_str(value: &duckdb::Expression) -> VortexResult<Option<String>>
4343 }
4444}
4545
46+ #[ expect( clippy:: cognitive_complexity) ]
4647pub 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( ) ) ;
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ impl<T> Drop for InstrumentedReadAt<T>
181181where
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( ) ) ;
You can’t perform that action at this time.
0 commit comments