mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
Insn::Return: add possibility to fallthrough on non-integer values as per sqlite spec
This commit is contained in:
parent
a88e1c38f3
commit
70965f4b28
4 changed files with 23 additions and 6 deletions
|
@ -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(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue