Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: expose strucvars annotation for worker aggregation command #204

Merged
merged 1 commit into from
Oct 9, 2023

feat: expose strucvar annotation for worker aggregation command

955d24d
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

feat: expose strucvars annotation for worker aggregation command #204

feat: expose strucvar annotation for worker aggregation command
955d24d
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Oct 9, 2023 in 1s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.73.0 (cc66ad468 2023-10-03)
  • cargo 1.73.0 (9c4383fb5 2023-08-26)
  • clippy 0.1.73 (cc66ad4 2023-10-03)

Annotations

Check warning on line 110 in src/db/create/txs/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of `or_insert` to construct default value

warning: use of `or_insert` to construct default value
   --> src/db/create/txs/mod.rs:110:18
    |
110 |                 .or_insert(Vec::new());
    |                  ^^^^^^^^^^^^^^^^^^^^^ help: try: `or_default()`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default
    = note: `#[warn(clippy::unwrap_or_default)]` on by default