From 67c6409412fac32759f274f86b3f65ae8ab68ada Mon Sep 17 00:00:00 2001 From: Diego Reis Date: Thu, 26 Dec 2024 14:09:11 -0300 Subject: [PATCH] Add handling to busy row on RowIterator::next() --- bindings/wasm/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/wasm/lib.rs b/bindings/wasm/lib.rs index fbd2e09de..641f9ff69 100644 --- a/bindings/wasm/lib.rs +++ b/bindings/wasm/lib.rs @@ -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), } }