()
| 597 | } |
| 598 | |
| 599 | @Test |
| 600 | public void deleteRangeGlobalMultiple() throws Exception { |
| 601 | setupStorage(false); |
| 602 | final int count = Annotation.deleteRange(tsdb, null, 1328140799000L, |
| 603 | 1328140900000L).joinUninterruptibly(); |
| 604 | assertEquals(2, count); |
| 605 | assertNull(storage.getColumn(global_row_key, |
| 606 | new byte[] { 1, 0, 0 })); |
| 607 | assertNull(storage.getColumn(global_row_key, |
| 608 | new byte[] { 1, 0, 1 })); |
| 609 | } |
| 610 | |
| 611 | @Test |
| 612 | public void deleteRangeGlobalMultipleSalted() throws Exception { |
nothing calls this directly
no test coverage detected