mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-23 21:39:57 +00:00
Compare commits
6 Commits
docs/quick
...
rpgreen/0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f3a2b7d055 | ||
|
|
ef0bf6df3b | ||
|
|
b4bf0db7d5 | ||
|
|
285757f705 | ||
|
|
4fd0ea0c4a | ||
|
|
3629229444 |
16
Cargo.toml
16
Cargo.toml
@@ -20,15 +20,15 @@ keywords = ["lancedb", "lance", "database", "vector", "search"]
|
|||||||
categories = ["database-implementations"]
|
categories = ["database-implementations"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
lance = { "version" = "=0.18.3", "features" = [
|
lance = { "version" = "=0.19.1", "features" = [
|
||||||
"dynamodb",
|
"dynamodb",
|
||||||
], git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
]}
|
||||||
lance-index = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
lance-index = { "version" = "=0.19.1"}
|
||||||
lance-linalg = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
lance-linalg = { "version" = "=0.19.1"}
|
||||||
lance-table = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
lance-table = { "version" = "=0.19.1"}
|
||||||
lance-testing = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
lance-testing = { "version" = "=0.19.1"}
|
||||||
lance-datafusion = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
lance-datafusion = { "version" = "=0.19.1"}
|
||||||
lance-encoding = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
lance-encoding = { "version" = "=0.19.1"}
|
||||||
# Note that this one does not include pyarrow
|
# Note that this one does not include pyarrow
|
||||||
arrow = { version = "52.2", optional = false }
|
arrow = { version = "52.2", optional = false }
|
||||||
arrow-array = "52.2"
|
arrow-array = "52.2"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name = "lancedb"
|
|||||||
# version in Cargo.toml
|
# version in Cargo.toml
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deprecation",
|
"deprecation",
|
||||||
"pylance==0.18.3-beta.2",
|
"pylance==0.19.1",
|
||||||
"requests>=2.31.0",
|
"requests>=2.31.0",
|
||||||
"tqdm>=4.27.0",
|
"tqdm>=4.27.0",
|
||||||
"pydantic>=1.10",
|
"pydantic>=1.10",
|
||||||
|
|||||||
@@ -1568,6 +1568,7 @@ impl NativeTable {
|
|||||||
let mut dataset = self.dataset.get_mut().await?;
|
let mut dataset = self.dataset.get_mut().await?;
|
||||||
let fts_params = lance_index::scalar::InvertedIndexParams {
|
let fts_params = lance_index::scalar::InvertedIndexParams {
|
||||||
with_position: fts_opts.with_position,
|
with_position: fts_opts.with_position,
|
||||||
|
tokenizer_config: Default::default(),
|
||||||
};
|
};
|
||||||
dataset
|
dataset
|
||||||
.create_index(
|
.create_index(
|
||||||
@@ -2002,7 +2003,7 @@ impl TableInternal for NativeTable {
|
|||||||
self.dataset
|
self.dataset
|
||||||
.get_mut()
|
.get_mut()
|
||||||
.await?
|
.await?
|
||||||
.add_columns(transforms, read_columns)
|
.add_columns(transforms, read_columns, None)
|
||||||
.await?;
|
.await?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user