mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
implement IdxDelete
clippy revert op_idx_ge changes fmt fmt again rever op_idx_gt changes
This commit is contained in:
parent
2495d15b96
commit
b7970a286d
7 changed files with 239 additions and 8 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue