Compare commits

..

2 Commits

Author SHA1 Message Date
Jack Ye f94349ef59 chore: fix clippy for PreprocessingOutput without remote feature 2026-02-25 14:26:56 -08:00
Lance Release c9c08ac8b9 Bump version: 0.27.0-beta.1 → 0.27.0-beta.2 2026-02-25 07:47:54 +00:00
3 changed files with 7 additions and 5 deletions
Generated
+3 -3
View File
@@ -4714,7 +4714,7 @@ dependencies = [
[[package]]
name = "lancedb"
version = "0.27.0-beta.1"
version = "0.27.0-beta.2"
dependencies = [
"ahash",
"anyhow",
@@ -4796,7 +4796,7 @@ dependencies = [
[[package]]
name = "lancedb-nodejs"
version = "0.27.0-beta.1"
version = "0.27.0-beta.2"
dependencies = [
"arrow-array",
"arrow-ipc",
@@ -4816,7 +4816,7 @@ dependencies = [
[[package]]
name = "lancedb-python"
version = "0.30.0-beta.1"
version = "0.30.0-beta.2"
dependencies = [
"arrow",
"async-trait",
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@lancedb/lancedb",
"version": "0.27.0-beta.1",
"version": "0.27.0-beta.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@lancedb/lancedb",
"version": "0.27.0-beta.1",
"version": "0.27.0-beta.2",
"cpu": [
"x64",
"arm64"
+2
View File
@@ -155,7 +155,9 @@ impl AddDataBuilder {
pub struct PreprocessingOutput {
pub plan: Arc<dyn datafusion_physical_plan::ExecutionPlan>,
#[cfg_attr(not(feature = "remote"), allow(dead_code))]
pub overwrite: bool,
#[cfg_attr(not(feature = "remote"), allow(dead_code))]
pub rescannable: bool,
pub write_options: WriteOptions,
pub mode: AddDataMode,