MR-794 step 1: import arrow_array::Array in staged_writes test

CI failed compiling tests/staged_writes.rs — `.len()` is on the Array
trait, not on the concrete StringArray/Int32Array types. Add the
trait import.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ragnor Comerford 2026-04-30 23:19:05 +02:00
parent 4c5fa3d8b8
commit 2fe2669017
No known key found for this signature in database

View file

@ -17,7 +17,7 @@
//! primitive's behavior so a future change either (a) preserves it or
//! (b) consciously fixes it (and updates this test).
use arrow_array::{Int32Array, RecordBatch, StringArray};
use arrow_array::{Array, Int32Array, RecordBatch, StringArray};
use arrow_schema::{DataType, Field, Schema};
use lance::dataset::{WhenMatched, WhenNotMatched};
use omnigraph::table_store::TableStore;