We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a3eefb commit 7627db9Copy full SHA for 7627db9
src/backend/query_builder.rs
@@ -11,7 +11,8 @@ pub trait QueryBuilder:
11
}
12
13
/// Prefix for tuples in VALUES list (e.g. ROW for MySQL)
14
- fn values_list_tuple_prefix(&self) -> &'static str {
+ #[expect(clippy::unnecessary_literal_bound, reason = "compatibility")]
15
+ fn values_list_tuple_prefix(&self) -> &str {
16
""
17
18
0 commit comments