feat: initial logical to physical compile #2198
Triggered via pull request
October 5, 2023 17:58
bjchambers
synchronize
#792
Status
Success
Total duration
22s
Artifacts
–
Annotations
3 errors
redundant closure:
crates/sparrow-instructions/src/columnar_value.rs#L89
error: redundant closure
--> crates/sparrow-instructions/src/columnar_value.rs:89:36
|
89 | ArcRef::new(array).try_map(|a| downcast_boolean_array(a))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `downcast_boolean_array`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
|
redundant closure:
crates/sparrow-instructions/src/columnar_value.rs#L62
error: redundant closure
--> crates/sparrow-instructions/src/columnar_value.rs:62:36
|
62 | ArcRef::new(array).try_map(|a| downcast_map_array(a))
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `downcast_map_array`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
|
redundant closure:
crates/sparrow-instructions/src/columnar_value.rs#L55
error: redundant closure
--> crates/sparrow-instructions/src/columnar_value.rs:55:36
|
55 | ArcRef::new(array).try_map(|a| downcast_struct_array(a))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace the closure with the function itself: `downcast_struct_array`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
= note: `-D clippy::redundant-closure` implied by `-D warnings`
|