mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-31 01:57:45 +08:00
chore: address Rust 1.88.0 clippy lints (#8498)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -737,7 +737,7 @@ where
|
||||
.change_context(QueryBuildingError::SqlSerializeError)
|
||||
.attach_printable("Error serializing order direction")?;
|
||||
|
||||
self.order_by.push(format!("{} {}", column_sql, order_sql));
|
||||
self.order_by.push(format!("{column_sql} {order_sql}"));
|
||||
Ok(())
|
||||
}
|
||||
|
||||
@ -892,7 +892,7 @@ where
|
||||
}
|
||||
|
||||
if let Some(limit_by) = &self.limit_by {
|
||||
query.push_str(&format!(" {}", limit_by));
|
||||
query.push_str(&format!(" {limit_by}"));
|
||||
}
|
||||
|
||||
if !self.outer_select.is_empty() {
|
||||
|
||||
Reference in New Issue
Block a user