()
| 29 | // ── shared fixtures ──────────────────────────────────────────────────────────── |
| 30 | |
| 31 | fn schema() -> Arc<nodedb_array::schema::ArraySchema> { |
| 32 | Arc::new( |
| 33 | ArraySchemaBuilder::new("basic") |
| 34 | .dim(DimSpec::new( |
| 35 | "x", |
| 36 | DimType::Int64, |
| 37 | Domain::new(DomainBound::Int64(0), DomainBound::Int64(15)), |
| 38 | )) |
| 39 | .attr(AttrSpec::new("v", AttrType::Int64, true)) |
| 40 | .tile_extents(vec![16]) |
| 41 | .build() |
| 42 | .unwrap(), |
| 43 | ) |
| 44 | } |
| 45 | |
| 46 | const SCHEMA_HASH: u64 = 0xBA51_CBA5_1CDE_F000; |
| 47 | const TENANT: TenantId = TenantId::new(1); |
no test coverage detected