We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d940b5 commit 2aaf9f0Copy full SHA for 2aaf9f0
2 files changed
rust/lance/src/dataset/scanner.rs
@@ -2756,7 +2756,7 @@ mod test {
2756
2757
// UPDATE
2758
2759
- dataset.optimize_indices().await.unwrap();
+ dataset.optimize_indices(None).await.unwrap();
2760
let updated_version = dataset.version().version;
2761
2762
// APPEND -> DELETE
rust/lance/src/index/append.rs
@@ -193,7 +193,7 @@ mod tests {
193
.unwrap();
194
assert_eq!(results[0].num_rows(), 10); // Flat search.
195
196
197
let index = &dataset.load_indices().await.unwrap()[0];
198
assert!(unindexed_fragments(index, &dataset)
199
.await
0 commit comments