Check if CI action works for non-fork branch #2366
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
2 errors
incorrect implementation of `partial_cmp` on an `Ord` type:
partiql-value/src/list.rs#L184
error: incorrect implementation of `partial_cmp` on an `Ord` type
--> partiql-value/src/list.rs:184:1
|
184 | / impl PartialOrd for List {
185 | | fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
| | _____________________________________________________________-
186 | || let mut l = self.0.iter();
187 | || let mut r = other.0.iter();
188 | ||
... ||
201 | || }
202 | || }
| ||_____- help: change this to: `{ Some(self.cmp(other)) }`
203 | | }
| |__^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incorrect_partial_ord_impl_on_ord_type
= note: `#[deny(clippy::incorrect_partial_ord_impl_on_ord_type)]` on by default
|
incorrect implementation of `partial_cmp` on an `Ord` type:
partiql-value/src/list.rs#L184
error: incorrect implementation of `partial_cmp` on an `Ord` type
--> partiql-value/src/list.rs:184:1
|
184 | / impl PartialOrd for List {
185 | | fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
| | _____________________________________________________________-
186 | || let mut l = self.0.iter();
187 | || let mut r = other.0.iter();
188 | ||
... ||
201 | || }
202 | || }
| ||_____- help: change this to: `{ Some(self.cmp(other)) }`
203 | | }
| |__^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incorrect_partial_ord_impl_on_ord_type
= note: `#[deny(clippy::incorrect_partial_ord_impl_on_ord_type)]` on by default
|