Update partiql-tests #2233
GitHub Actions / clippy
succeeded
Aug 5, 2023 in 0s
clippy
2 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 2 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.71.1 (eb26296b5 2023-08-03)
- cargo 1.71.1 (7f1d04c00 2023-07-29)
- clippy 0.1.71 (eb26296 2023-08-03)
Annotations
Check warning on line 139 in partiql-catalog/src/lib.rs
github-actions / clippy
field `id` is never read
warning: field `id` is never read
--> partiql-catalog/src/lib.rs:139:5
|
138 | pub struct FunctionEntry<'a> {
| ------------- field in this struct
139 | id: ObjectId,
| ^^
|
= note: `FunctionEntry` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
Check warning on line 133 in partiql-catalog/src/lib.rs
github-actions / clippy
fields `id` and `ty` are never read
warning: fields `id` and `ty` are never read
--> partiql-catalog/src/lib.rs:133:5
|
132 | pub struct TypeEntry {
| --------- fields in this struct
133 | id: ObjectId,
| ^^
134 | ty: PartiqlType,
| ^^
|
= note: `TypeEntry` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
Loading