()
| 21 | use super::wal::ArrayPutCell; |
| 22 | |
| 23 | pub(super) fn schema() -> Arc<ArraySchema> { |
| 24 | Arc::new( |
| 25 | ArraySchemaBuilder::new("a") |
| 26 | .dim(DimSpec::new( |
| 27 | "x", |
| 28 | DimType::Int64, |
| 29 | Domain::new(DomainBound::Int64(0), DomainBound::Int64(15)), |
| 30 | )) |
| 31 | .dim(DimSpec::new( |
| 32 | "y", |
| 33 | DimType::Int64, |
| 34 | Domain::new(DomainBound::Int64(0), DomainBound::Int64(15)), |
| 35 | )) |
| 36 | .attr(AttrSpec::new("v", AttrType::Int64, true)) |
| 37 | .tile_extents(vec![4, 4]) |
| 38 | .build() |
| 39 | .unwrap(), |
| 40 | ) |
| 41 | } |
| 42 | |
| 43 | pub(super) fn aid() -> ArrayId { |
| 44 | ArrayId::new(TenantId::new(1), "g") |
no test coverage detected