mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
EXPLAIN should show a comment for the Insert opcode
This commit is contained in:
parent
46c915b13c
commit
d74df2473e
6 changed files with 8 additions and 2 deletions
|
@ -1014,14 +1014,15 @@ pub fn insn_to_str(
|
|||
key_reg,
|
||||
record_reg,
|
||||
flag,
|
||||
table_name,
|
||||
} => (
|
||||
"Insert",
|
||||
*cursor as i32,
|
||||
*record_reg as i32,
|
||||
*key_reg as i32,
|
||||
OwnedValue::build_text(""),
|
||||
OwnedValue::build_text(&table_name),
|
||||
*flag as u16,
|
||||
"".to_string(),
|
||||
format!("intkey=r[{}] data=r[{}]", key_reg, record_reg),
|
||||
),
|
||||
Insn::Delete { cursor_id } => (
|
||||
"Delete",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue