From 5afebc5f74ca6fb337e88c038c7836c03d625e9e Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Tue, 23 Sep 2025 22:34:33 -0400 Subject: [PATCH] Add Sequence and SequenceTest opcode to explain --- core/vdbe/explain.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/core/vdbe/explain.rs b/core/vdbe/explain.rs index 5a9ef7bec..c5d35f2a3 100644 --- a/core/vdbe/explain.rs +++ b/core/vdbe/explain.rs @@ -1759,6 +1759,24 @@ pub fn insn_to_row( 0, String::new(), ), + Insn::Sequence{ cursor_id, target_reg} => ( + "Sequence", + *cursor_id as i32, + *target_reg as i32, + 0, + Value::build_text(""), + 0, + String::new(), + ), + Insn::SequenceTest{ cursor_id, target_pc, value_reg } => ( + "SequenceTest", + *cursor_id as i32, + target_pc.as_debug_int(), + *value_reg as i32, + Value::build_text(""), + 0, + String::new(), + ), } }