jesspav commented on PR #253:
URL: https://github.com/apache/sedona-db/pull/253#issuecomment-3471119059
The clippy failure is from another commit outside of the packages that this
PR changes:
```
error: this `impl` can be derived
--> c/sedona-tg/src/tg.rs:38:1
|
38 | / impl Default for IndexType {
39 | | fn default() -> Self {
40 | | Self::Default
41 | | }
42 | | }
| |_^
|
= help: for further information visit
https://rust-lang.github.io/rust-clippy/rust-1.91.0/index.html#derivable_impls
= note: `-D clippy::derivable-impls` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::derivable_impls)]`
help: replace the manual implementation with a derive attribute and mark the
default variant
|
27 + #[derive(Default)]
28 ~ pub enum IndexType {
29 | /// Do not build an index
30 | Unindexed,
31 | /// Use the statically set default
32 ~ #[default]
33 ~ Default,
|
error: could not compile `sedona-tg` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
Error: Process completed with exit code 101.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]