Skip to content

Add SQL aggregates ANY, SOME, EVERY and their COLL_ versions

Sign in for the full log view
GitHub Actions / clippy succeeded Aug 4, 2023 in 1s

clippy

4 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 4
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 28 in partiql-eval/src/eval/eval_expr_wrapper.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unreachable pattern

warning: unreachable pattern
  --> partiql-eval/src/eval/eval_expr_wrapper.rs:28:9
   |
28 |         (TypeKind::Missing, Value::Missing) => true,
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Check warning on line 27 in partiql-eval/src/eval/eval_expr_wrapper.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unreachable pattern

warning: unreachable pattern
  --> partiql-eval/src/eval/eval_expr_wrapper.rs:27:9
   |
27 |         (TypeKind::Null, Value::Null) => true,
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `#[warn(unreachable_patterns)]` on by default

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