()
| 447 | } |
| 448 | |
| 449 | @Test |
| 450 | public void fetchAllCollisionsNone() throws Exception { |
| 451 | setupStorage(true, true); |
| 452 | storage.flushRow(TREE_TABLE, new byte[] { 0, 1, 1 }); |
| 453 | Map<String, String> collisions = |
| 454 | Tree.fetchCollisions(storage.getTSDB(), 1, null).joinUninterruptibly(); |
| 455 | assertNotNull(collisions); |
| 456 | assertEquals(0, collisions.size()); |
| 457 | } |
| 458 | |
| 459 | @Test |
| 460 | public void fetchCollisionsSingle() throws Exception { |
nothing calls this directly
no test coverage detected