Add handling to busy row on RowIterator::next()

This commit is contained in:
Diego Reis
2024-12-26 14:09:11 -03:00
parent d7be6f91cd
commit 67c6409412

View File

@@ -82,6 +82,7 @@ impl RowIterator {
Ok(limbo_core::RowResult::Done) | Ok(limbo_core::RowResult::Interrupt) => {
JsValue::UNDEFINED
}
Ok(limbo_core::RowResult::Busy) => JsValue::UNDEFINED,
Err(e) => panic!("Error: {:?}", e),
}
}