implement IdxDelete

clippy

revert op_idx_ge changes

fmt

fmt again

rever op_idx_gt changes
This commit is contained in:
Pere Diaz Bou 2025-04-22 11:50:51 +02:00
parent 2495d15b96
commit b7970a286d
7 changed files with 239 additions and 8 deletions

View file

@ -1037,6 +1037,19 @@ pub fn insn_to_str(
0,
"".to_string(),
),
Insn::IdxDelete {
cursor_id,
start_reg,
num_regs,
} => (
"IdxDelete",
*cursor_id as i32,
*start_reg as i32,
*num_regs as i32,
OwnedValue::build_text(""),
0,
"".to_string(),
),
Insn::NewRowid {
cursor,
rowid_reg,