Skip to content

Update partiql-tests, address TODOs, update changelog #2027

Update partiql-tests, address TODOs, update changelog

Update partiql-tests, address TODOs, update changelog #2027

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy succeeded Jun 30, 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.70.0 (90c541806 2023-05-31)
  • cargo 1.70.0 (ec8a8a0ca 2023-04-25)
  • clippy 0.1.70 (90c5418 2023-05-31)

Annotations

Check warning on line 139 in partiql-catalog/src/lib.rs

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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