Remove InsnFunctionStepResult::Busy

we don't need all these busy variants, let's just handle
LimboError::Busy
This commit is contained in:
Jussi Saurio
2025-09-17 11:22:49 +03:00
parent dc103da2ed
commit b9ceacc356
3 changed files with 3 additions and 13 deletions

View File

@@ -435,11 +435,6 @@ impl CompiledExpression {
"Expression evaluation was interrupted".to_string(),
));
}
crate::vdbe::execute::InsnFunctionStepResult::Busy => {
return Err(crate::LimboError::InternalError(
"Expression evaluation encountered busy state".to_string(),
));
}
crate::vdbe::execute::InsnFunctionStepResult::Step => {
pc = state.pc as usize;
}