Skip to content

Commit 7627db9

Browse files
committed
Fix values_list_tuple_prefix
1 parent 9a3eefb commit 7627db9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/query_builder.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ pub trait QueryBuilder:
1111
}
1212

1313
/// Prefix for tuples in VALUES list (e.g. ROW for MySQL)
14-
fn values_list_tuple_prefix(&self) -> &'static str {
14+
#[expect(clippy::unnecessary_literal_bound, reason = "compatibility")]
15+
fn values_list_tuple_prefix(&self) -> &str {
1516
""
1617
}
1718

0 commit comments

Comments
 (0)