mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-24 22:09:58 +00:00
Compare commits
10 Commits
python-v0.
...
rpgreen/0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe8b5b31f8 | ||
|
|
d1d0247014 | ||
|
|
4bee551465 | ||
|
|
b898b3dcd6 | ||
|
|
b01af0690c | ||
|
|
6b64fd1ab6 | ||
|
|
460378cdf9 | ||
|
|
f9d0dd8523 | ||
|
|
9ac7a69e4e | ||
|
|
ffba946890 |
16
Cargo.toml
16
Cargo.toml
@@ -20,15 +20,15 @@ keywords = ["lancedb", "lance", "database", "vector", "search"]
|
||||
categories = ["database-implementations"]
|
||||
|
||||
[workspace.dependencies]
|
||||
lance = { "version" = "=0.18.3", "features" = [
|
||||
lance = { "version" = "=0.19.1", "features" = [
|
||||
"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-linalg = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
||||
lance-table = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
||||
lance-testing = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
||||
lance-datafusion = { "version" = "=0.18.3", git = "https://github.com/lancedb/lance.git", tag = "v0.18.3-beta.2" }
|
||||
lance-encoding = { "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.19.1"}
|
||||
lance-table = { "version" = "=0.19.1"}
|
||||
lance-testing = { "version" = "=0.19.1"}
|
||||
lance-datafusion = { "version" = "=0.19.1" }
|
||||
lance-encoding = { "version" = "=0.19.1" }
|
||||
# Note that this one does not include pyarrow
|
||||
arrow = { version = "52.2", optional = false }
|
||||
arrow-array = "52.2"
|
||||
|
||||
@@ -3,7 +3,7 @@ name = "lancedb"
|
||||
# version in Cargo.toml
|
||||
dependencies = [
|
||||
"deprecation",
|
||||
"pylance==0.18.3-beta.2",
|
||||
"pylance==0.19.1",
|
||||
"requests>=2.31.0",
|
||||
"tqdm>=4.27.0",
|
||||
"pydantic>=1.10",
|
||||
|
||||
@@ -119,7 +119,9 @@ pub enum IndexType {
|
||||
#[serde(alias = "LABEL_LIST")]
|
||||
LabelList,
|
||||
// FTS
|
||||
#[serde(alias = "INVERTED")]
|
||||
FTS,
|
||||
INVERTED,
|
||||
}
|
||||
|
||||
impl std::fmt::Display for IndexType {
|
||||
@@ -132,6 +134,7 @@ impl std::fmt::Display for IndexType {
|
||||
Self::Bitmap => write!(f, "BITMAP"),
|
||||
Self::LabelList => write!(f, "LABEL_LIST"),
|
||||
Self::FTS => write!(f, "FTS"),
|
||||
Self::INVERTED => write!(f, "FTS"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -82,6 +82,7 @@ pub mod merge;
|
||||
pub use chrono::Duration;
|
||||
pub use lance::dataset::optimize::CompactionOptions;
|
||||
pub use lance_index::optimize::OptimizeOptions;
|
||||
use lance_index::scalar::inverted::TokenizerConfig;
|
||||
|
||||
/// Defines the type of column
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
@@ -1568,6 +1569,7 @@ impl NativeTable {
|
||||
let mut dataset = self.dataset.get_mut().await?;
|
||||
let fts_params = lance_index::scalar::InvertedIndexParams {
|
||||
with_position: fts_opts.with_position,
|
||||
tokenizer_config: TokenizerConfig::default()
|
||||
};
|
||||
dataset
|
||||
.create_index(
|
||||
@@ -2002,7 +2004,7 @@ impl TableInternal for NativeTable {
|
||||
self.dataset
|
||||
.get_mut()
|
||||
.await?
|
||||
.add_columns(transforms, read_columns)
|
||||
.add_columns(transforms, read_columns, None)
|
||||
.await?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user