chore: Release v0.7.0 (#450) #119
benchmark.yml
on: push
Performance regression check
11m 53s
Annotations
5 warnings
writing `&Vec` instead of `&[_]` involves a new object where a slice will do:
partiql-catalog/src/call_defs.rs#L34
warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do
--> partiql-catalog/src/call_defs.rs:34:15
|
34 | args: &Vec<CallArgument>,
| ^^^^^^^^^^^^^^^^^^ help: change this to: `&[CallArgument]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: `#[warn(clippy::ptr_arg)]` on by default
|
redundant pattern matching, consider using `is_some()`:
/home/runner/work/partiql-lang-rust/partiql-lang-rust/target/debug/build/partiql-parser-a451281732f17441/out/partiql.rs#L47883
warning: redundant pattern matching, consider using `is_some()`
--> /home/runner/work/partiql-lang-rust/partiql-lang-rust/target/debug/build/partiql-parser-a451281732f17441/out/partiql.rs:47883:25
|
47883 | let recursive = matches!(rec, Some(_));
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `rec.is_some()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `#[warn(clippy::redundant_pattern_matching)]` on by default
|
Performance regression check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
writing `&Vec` instead of `&[_]` involves a new object where a slice will do:
partiql-catalog/src/call_defs.rs#L34
warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do
--> partiql-catalog/src/call_defs.rs:34:15
|
34 | args: &Vec<CallArgument>,
| ^^^^^^^^^^^^^^^^^^ help: change this to: `&[CallArgument]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg
= note: `#[warn(clippy::ptr_arg)]` on by default
|
redundant pattern matching, consider using `is_some()`:
/home/runner/work/partiql-lang-rust/partiql-lang-rust/target/debug/build/partiql-parser-a451281732f17441/out/partiql.rs#L47883
warning: redundant pattern matching, consider using `is_some()`
--> /home/runner/work/partiql-lang-rust/partiql-lang-rust/target/debug/build/partiql-parser-a451281732f17441/out/partiql.rs:47883:25
|
47883 | let recursive = matches!(rec, Some(_));
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `rec.is_some()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
= note: `#[warn(clippy::redundant_pattern_matching)]` on by default
|