()
| 24 | use tempfile::TempDir; |
| 25 | |
| 26 | fn schema() -> std::sync::Arc<nodedb_array::schema::ArraySchema> { |
| 27 | std::sync::Arc::new( |
| 28 | ArraySchemaBuilder::new("flag_test") |
| 29 | .dim(DimSpec::new( |
| 30 | "x", |
| 31 | DimType::Int64, |
| 32 | Domain::new(DomainBound::Int64(0), DomainBound::Int64(15)), |
| 33 | )) |
| 34 | .attr(AttrSpec::new("v", AttrType::Int64, true)) |
| 35 | .tile_extents(vec![16]) |
| 36 | .build() |
| 37 | .unwrap(), |
| 38 | ) |
| 39 | } |
| 40 | |
| 41 | const SCHEMA_HASH: u64 = 0xF1A9_7E57_0000_0001; |
| 42 | const TENANT: TenantId = TenantId::new(1); |
no test coverage detected