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