feat: upgrade lance to 0.11.1 (#1338)

This commit is contained in:
Weston Pace
2024-05-29 16:28:09 -07:00
committed by GitHub
parent bc139000bd
commit eb2cbedf19
3 changed files with 6 additions and 6 deletions

View File

@@ -1751,7 +1751,7 @@ impl TableInternal for NativeTable {
builder.when_not_matched_by_source(WhenNotMatchedBySource::Keep);
}
let job = builder.try_build()?;
let new_dataset = job.execute_reader(new_data).await?;
let (new_dataset, _stats) = job.execute_reader(new_data).await?;
self.dataset.set_latest(new_dataset.as_ref().clone()).await;
Ok(())
}