chore: upgrade lance to 0.35.0 (#2625)

This commit is contained in:
Jack Ye
2025-09-04 01:31:13 -07:00
committed by GitHub
parent 48f7b20daa
commit 683aaed716
3 changed files with 53 additions and 40 deletions

View File

@@ -62,10 +62,8 @@ async fn main() -> Result<()> {
.as_any()
.downcast_ref::<StringArray>()
.unwrap();
for text in out.iter() {
if let Some(text) = text {
println!("Result: {}", text);
}
for text in out.iter().flatten() {
println!("Result: {}", text);
}
}