You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning: item in documentation is missing backticks
--> src/frontend/src/expr/type_inference/cast.rs:70:5
|
70 | /// array_idx and element_idx indicate which element in inputs is the array and which the element
| ^^^^^^^^^
|
= note: requested on the command line with `-W clippy::doc-markdown`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
70 | /// `array_idx` and element_idx indicate which element in inputs is the array and which the element
| ~~~~~~~~~~~
warning: item in documentation is missing backticks
--> src/frontend/src/expr/type_inference/cast.rs:70:19
|
70 | /// array_idx and element_idx indicate which element in inputs is the array and which the element
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
70 | /// array_idx and `element_idx` indicate which element in inputs is the array and which the element
| ~~~~~~~~~~~~~
warning: item in documentation is missing backticks
--> src/frontend/src/expr/type_inference/cast.rs:71:15
|
71 | /// Example: align_array_and_element(numeric[], int) -> numeric[]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_markdown
help: try
|
71 | /// Example: `align_array_and_element(numeric`[], int) -> numeric[]
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
warning: `risingwave_frontend` (lib) generated 3 warnings
Checking risingwave_ctl v0.1.11 (/Users/yuhao/code/risingwave-dev/src/ctl)
Checking risingwave_sqlsmith v0.1.11 (/Users/yuhao/code/risingwave-dev/src/tests/sqlsmith)
Checking risingwave_planner_test v0.1.11 (/Users/yuhao/code/risingwave-dev/src/frontend/planner_test)
Checking risingwave_simulation v0.1.0 (/Users/yuhao/code/risingwave-dev/src/tests/simulation)
Checking risingwave_cmd_all v0.1.11 (/Users/yuhao/code/risingwave-dev/src/cmd_all)
Checking risingwave_cmd v0.1.11 (/Users/yuhao/code/risingwave-dev/src/cmd)
warning: `risingwave_frontend` (lib test) generated 3 warnings (3 duplicates)
Checking risingwave_sync_point_test v0.1.0 (/Users/yuhao/code/risingwave-dev/src/tests/sync_point)
Finished dev [unoptimized + debuginfo] target(s) in 44.94s
To Reproduce
Run cargo clippy
Expected behavior
No response
Additional context
May pass CI because the clippy roles are override on linux
[target.x86_64-unknown-linux-gnu]
rustflags = [
"-Clink-arg=-fuse-ld=lld",
"-Clink-arg=-Wl,--no-rosegment",
"-Ctarget-feature=+avx2",
"--cfg",
"tokio_unstable",
]
# Remove "-Ctarget-feature=+neon" if your aarch64 target does not support NEON vector extensions
[target.aarch64-unknown-linux-gnu]
rustflags = [
"-Clink-arg=-fuse-ld=lld",
"-Clink-arg=-Wl,--no-rosegment",
"-Ctarget-feature=+neon",
"--cfg",
"tokio_unstable",
]
Describe the bug
To Reproduce
Run cargo clippy
Expected behavior
No response
Additional context
May pass CI because the clippy roles are override on linux
See
rust-lang/cargo#5376
https://doc.rust-lang.org/cargo/reference/config.html#buildrustflags
The text was updated successfully, but these errors were encountered: