mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
chore: address Rust 1.78 clippy lints (#4545)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -593,7 +593,7 @@ where
|
||||
|(order_column, order)| format!(
|
||||
" order by {} {}",
|
||||
order_column.to_owned(),
|
||||
order.to_string()
|
||||
order
|
||||
)
|
||||
),
|
||||
alias.map_or_else(|| "".to_owned(), |alias| format!(" as {}", alias))
|
||||
@ -616,7 +616,7 @@ where
|
||||
|(order_column, order)| format!(
|
||||
" order by {} {}",
|
||||
order_column.to_owned(),
|
||||
order.to_string()
|
||||
order
|
||||
)
|
||||
),
|
||||
alias.map_or_else(|| "".to_owned(), |alias| format!(" as {}", alias))
|
||||
|
||||
Reference in New Issue
Block a user