From f92e000277fea57bba52f6afcb4e377458b49db3 Mon Sep 17 00:00:00 2001 From: "Levy A." Date: Wed, 21 May 2025 00:45:58 -0300 Subject: [PATCH] fix: remove unused variable --- vendored/sqlite3-parser/src/parser/ast/check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendored/sqlite3-parser/src/parser/ast/check.rs b/vendored/sqlite3-parser/src/parser/ast/check.rs index 2ba263347..cbe2cacc7 100644 --- a/vendored/sqlite3-parser/src/parser/ast/check.rs +++ b/vendored/sqlite3-parser/src/parser/ast/check.rs @@ -104,7 +104,7 @@ impl Stmt { pub fn check(&self) -> Result<(), ParserError> { match self { Self::AlterTable(alter_table) => { - let (old_name, body) = &**alter_table; + let (_, body) = &**alter_table; match body { AlterTableBody::AddColumn(cd) => { for c in cd {