deps(lance): bump to 9.0.0-beta.15 (git rev-pin) — retire the lance-table vendor pin

The 9.x betas are git-tags only (crates.io carries <= 8.0.0), so all lance
crates become git dependencies rev-pinned to the v9.0.0-beta.15 tag commit
(f24e42c1). Carries lance#7480 (rowid overlap, closes #7444 — the
vendor/lance-table pin + [patch.crates-io] entry are retired per their
documented removal condition) and lance#7320 (BTREE segment merge, closes
#7230). Sole compile break in the workspace: RowAddrTreeMap moved to the
new lance-select crate.
This commit is contained in:
aaltshuler 2026-07-05 18:29:29 +03:00 committed by Andrew Altshuler
parent 2faa8dfa3e
commit 5d755a9274
4 changed files with 912 additions and 1030 deletions

View file

@ -20,6 +20,7 @@ omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.8.0" }
omnigraph-policy = { path = "../omnigraph-policy", version = "0.8.0" }
lance = { workspace = true }
lance-core = { workspace = true }
lance-select = { workspace = true }
lance-datafusion = { workspace = true }
datafusion = { workspace = true }
lance-file = { workspace = true }
@ -58,7 +59,7 @@ tokio = { workspace = true }
lance-namespace-impls = { workspace = true }
# test-util gates IoStats.requests + assert_io_eq! (failure diagnostics only); dev-dep,
# so production builds (which exclude dev-deps) never see it.
lance-io = { version = "7.0.0", features = ["test-util"] }
lance-io = { git = "https://github.com/lance-format/lance", rev = "f24e42c11a742581365e1cbe17c906ea2dac1bc6", features = ["test-util"] }
serial_test = "3"
proptest = "1"
# benches/scenarios.rs only: wait4/rusage peak-RSS + setrlimit memory caps.

View file

@ -16,7 +16,7 @@ use lance::dataset::{
use lance::datatypes::{BlobKind, Schema as LanceSchema};
use lance::index::DatasetIndexExt;
use lance::index::scalar::IndexDetails;
use lance_core::utils::mask::RowAddrTreeMap;
use lance_select::mask::RowAddrTreeMap;
use lance_file::version::LanceFileVersion;
use lance_index::scalar::{InvertedIndexParams, ScalarIndexParams};
use lance_index::{IndexType, is_system_index};