chore: update lance (#2610)

Adds storage_options to object_store wrap() to adhere to upstream lance
change.
This commit is contained in:
Wyatt Alt
2025-08-29 13:41:02 -07:00
committed by GitHub
parent f6846004ca
commit 981f8427e6
6 changed files with 126 additions and 46 deletions

View File

@@ -94,7 +94,7 @@ impl napi::bindgen_prelude::FromNapiValue for Session {
env: napi::sys::napi_env,
napi_val: napi::sys::napi_value,
) -> napi::Result<Self> {
let object: napi::bindgen_prelude::ClassInstance<Session> =
let object: napi::bindgen_prelude::ClassInstance<Self> =
napi::bindgen_prelude::ClassInstance::from_napi_value(env, napi_val)?;
let copy = object.clone();
Ok(copy)