fix: remove unused variable

This commit is contained in:
Levy A.
2025-05-21 00:45:58 -03:00
parent 587cf345cc
commit f92e000277

View File

@@ -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 {