chore: update lance dependency to v2.0.0-rc.4 (#2972)

This commit is contained in:
Jack Ye
2026-02-03 14:38:39 -08:00
committed by GitHub
parent fbf4a53475
commit bd2c6d0763
18 changed files with 464 additions and 580 deletions

View File

@@ -281,7 +281,7 @@ impl PyPermutationReader {
let reader = slf.reader.clone();
future_into_py(slf.py(), async move {
let schema = reader.output_schema(selection).await.infer_error()?;
Python::with_gil(|py| schema.to_pyarrow(py))
Python::attach(|py| schema.to_pyarrow(py).map(|obj| obj.unbind()))
})
}