mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
Fix clippy warnings
This commit is contained in:
parent
9d31f5d848
commit
2432e0561e
2 changed files with 2 additions and 2 deletions
|
@ -196,7 +196,7 @@ pub fn op_drop_index(
|
|||
pager: &Rc<Pager>,
|
||||
mv_store: Option<&Rc<MvStore>>,
|
||||
) -> Result<InsnFunctionStepResult> {
|
||||
let Insn::DropIndex { index, db } = insn else {
|
||||
let Insn::DropIndex { index, db: _ } = insn else {
|
||||
unreachable!("unexpected Insn {:?}", insn)
|
||||
};
|
||||
if let Some(conn) = program.connection.upgrade() {
|
||||
|
|
|
@ -1179,7 +1179,7 @@ pub fn insn_to_str(
|
|||
0,
|
||||
format!("DROP TABLE {}", table_name),
|
||||
),
|
||||
Insn::DropIndex { db, index } => (
|
||||
Insn::DropIndex { db: _, index } => (
|
||||
"DropIndex",
|
||||
0,
|
||||
0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue