Insn::Return: add possibility to fallthrough on non-integer values as per sqlite spec

This commit is contained in:
Jussi Saurio 2025-05-26 16:24:16 +03:00
parent a88e1c38f3
commit 70965f4b28
4 changed files with 23 additions and 6 deletions

View file

@ -625,11 +625,14 @@ pub fn insn_to_str(
0,
"".to_string(),
),
Insn::Return { return_reg } => (
Insn::Return {
return_reg,
can_fallthrough,
} => (
"Return",
*return_reg as i32,
0,
0,
*can_fallthrough as i32,
Value::build_text(""),
0,
"".to_string(),