diff --git a/Cargo.toml b/Cargo.toml index d5d3a71b..45d9c9ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,11 +20,11 @@ keywords = ["lancedb", "lance", "database", "vector", "search"] categories = ["database-implementations"] [workspace.dependencies] -lance = { "version" = "=0.14.0", "features" = ["dynamodb"] } -lance-index = { "version" = "=0.14.0" } -lance-linalg = { "version" = "=0.14.0" } -lance-testing = { "version" = "=0.14.0" } -lance-datafusion = { "version" = "=0.14.0" } +lance = { "version" = "=0.14.1", "features" = ["dynamodb"] } +lance-index = { "version" = "=0.14.1" } +lance-linalg = { "version" = "=0.14.1" } +lance-testing = { "version" = "=0.14.1" } +lance-datafusion = { "version" = "=0.14.1" } # Note that this one does not include pyarrow arrow = { version = "51.0", optional = false } arrow-array = "51.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index ad95a6d0..dafda8d4 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -3,7 +3,7 @@ name = "lancedb" # version in Cargo.toml dependencies = [ "deprecation", - "pylance==0.14.0", + "pylance==0.14.1", "ratelimiter~=1.0", "requests>=2.31.0", "retry>=0.9.2", diff --git a/rust/lancedb/src/table.rs b/rust/lancedb/src/table.rs index 4a1eb7ab..4aa698d3 100644 --- a/rust/lancedb/src/table.rs +++ b/rust/lancedb/src/table.rs @@ -1503,7 +1503,9 @@ impl NativeTable { } let mut dataset = self.dataset.get_mut().await?; - let lance_idx_params = lance::index::scalar::ScalarIndexParams {}; + let lance_idx_params = lance::index::scalar::ScalarIndexParams { + force_index_type: Some(lance::index::scalar::ScalarIndexType::BTree), + }; dataset .create_index( &[field.name()],