fix(node): pin automatic search to table revision

This commit is contained in:
Gatefixer
2026-08-08 13:39:02 +00:00
parent db3b448917
commit ebfacfa3fc
10 changed files with 672 additions and 23 deletions
+6
View File
@@ -472,6 +472,12 @@ impl Table {
.default_error()
}
#[napi(catch_unwind)]
pub async fn checkout_current(&self) -> napi::Result<Self> {
let table = self.inner_ref()?.checkout_current().await.default_error()?;
Ok(Self::new(table))
}
#[napi(catch_unwind)]
pub async fn checkout(&self, version: i64) -> napi::Result<()> {
self.inner_ref()?