()
| 561 | } |
| 562 | |
| 563 | @Test |
| 564 | public void deleteRangeGlobal() throws Exception { |
| 565 | setupStorage(false); |
| 566 | final int count = Annotation.deleteRange(tsdb, null, 1328140799000L, |
| 567 | 1328140800000L).joinUninterruptibly(); |
| 568 | assertEquals(1, count); |
| 569 | assertNull(storage.getColumn(global_row_key, |
| 570 | new byte[] { 1, 0, 0 })); |
| 571 | assertNotNull(storage.getColumn(global_row_key, |
| 572 | new byte[] { 1, 0, 1 })); |
| 573 | } |
| 574 | |
| 575 | @Test |
| 576 | public void deleteRangeGlobalSalted() throws Exception { |
nothing calls this directly
no test coverage detected