()
| 573 | } |
| 574 | |
| 575 | @Test |
| 576 | public void deleteRangeGlobalSalted() throws Exception { |
| 577 | setupStorage(true); |
| 578 | final int count = Annotation.deleteRange(tsdb, null, 1328140799000L, |
| 579 | 1328140800000L).joinUninterruptibly(); |
| 580 | assertEquals(1, count); |
| 581 | assertNull(storage.getColumn(global_row_key, |
| 582 | new byte[] { 1, 0, 0 })); |
| 583 | assertNotNull(storage.getColumn(global_row_key, |
| 584 | new byte[] { 1, 0, 1 })); |
| 585 | } |
| 586 | |
| 587 | @Test |
| 588 | public void deleteRangeGlobalNone() throws Exception { |
nothing calls this directly
no test coverage detected