()
| 266 | |
| 267 | #[test] |
| 268 | fn one_thousand_cells_roundtrip() { |
| 269 | let s = schema(); |
| 270 | let tile = make_tile(&s, 1000); |
| 271 | let out = roundtrip(&tile); |
| 272 | assert_eq!(out.surrogates.len(), 1000); |
| 273 | assert_eq!(out.dim_dicts[0].indices, tile.dim_dicts[0].indices); |
| 274 | } |
| 275 | |
| 276 | #[test] |
| 277 | fn tombstone_rows_roundtrip() { |