From 2fe26690172e50e7fbe87ad753fd2e1e758faa1b Mon Sep 17 00:00:00 2001 From: Ragnor Comerford Date: Thu, 30 Apr 2026 23:19:05 +0200 Subject: [PATCH] MR-794 step 1: import arrow_array::Array in staged_writes test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- crates/omnigraph/tests/staged_writes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/omnigraph/tests/staged_writes.rs b/crates/omnigraph/tests/staged_writes.rs index 06fffc2..1d798a6 100644 --- a/crates/omnigraph/tests/staged_writes.rs +++ b/crates/omnigraph/tests/staged_writes.rs @@ -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;