()
| 585 | } |
| 586 | |
| 587 | @Test |
| 588 | public void deleteRangeGlobalNone() throws Exception { |
| 589 | setupStorage(false); |
| 590 | final int count = Annotation.deleteRange(tsdb, null, 1328140798000L, |
| 591 | 1328140799000L).joinUninterruptibly(); |
| 592 | assertEquals(0, count); |
| 593 | assertNotNull(storage.getColumn(global_row_key, |
| 594 | new byte[] { 1, 0, 0 })); |
| 595 | assertNotNull(storage.getColumn(global_row_key, |
| 596 | new byte[] { 1, 0, 1 })); |
| 597 | } |
| 598 | |
| 599 | @Test |
| 600 | public void deleteRangeGlobalMultiple() throws Exception { |
nothing calls this directly
no test coverage detected