From 435a472bcad2d551b58f6a912e0827b4495dbf6b Mon Sep 17 00:00:00 2001 From: Konstantinos Artopoulos Date: Wed, 8 Oct 2025 11:09:20 +0300 Subject: [PATCH] fix(cli): clippy error --- cli/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/app.rs b/cli/app.rs index 490818817..e4fccbb34 100644 --- a/cli/app.rs +++ b/cli/app.rs @@ -1327,7 +1327,7 @@ impl Limbo { } Ok(()) }; - match self.handle_row(&sql, handler) { + match self.handle_row(sql, handler) { Ok(_) => Ok(db_names), Err(e) => Err(anyhow::anyhow!("Error in database list: {}", e)), }