Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rust/lance/src/index/append.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use futures::FutureExt;
use lance_core::{Error, Result};
use lance_index::metrics::NoOpMetricsCollector;
use lance_index::optimize::OptimizeOptions;
use lance_index::progress::NoopIndexBuildProgress;
use lance_index::scalar::lance_format::LanceIndexStore;
use lance_index::scalar::CreatedIndex;
use lance_index::VECTOR_INDEX_VERSION;
Expand Down Expand Up @@ -160,6 +161,7 @@ pub async fn merge_indices_with_unindexed_frags<'a>(
true,
None,
Some(new_data_stream),
Arc::new(NoopIndexBuildProgress::default()),
)
.await?
} else {
Expand Down
Loading