automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-06-26 10:12:49 +00:00 committed by github-actions[bot]
parent 1a71f1932b
commit 6f10b3f602
1 changed files with 4 additions and 4 deletions

View File

@ -126,10 +126,10 @@ fn interactive_delete(conn: &Connection, buf: &mut String) -> anyhow::Result<()>
continue;
}
println!();
let mut stmt =
conn.prepare(&format!("DELETE FROM {TABLE_CAT} WHERE color_id = (?1)"))?;
stmt.execute([color_id])?;
println!("-> deleted cats with color_id {color_id}");
let mut stmt = conn
.prepare(&format!("DELETE FROM {TABLE_CAT} WHERE color_id = (?1)"))?;
stmt.execute([color_id])?;
println!("-> deleted cats with color_id {color_id}");
}
let mut stmt =