()
| 448 | } |
| 449 | |
| 450 | @Test |
| 451 | public void deleteGlobalNotFound() throws Exception { |
| 452 | setupStorage(false); |
| 453 | note.setStartTime(1328140803); |
| 454 | note.delete(tsdb).joinUninterruptibly(); |
| 455 | assertNotNull(storage.getColumn(global_row_key, |
| 456 | new byte[] { 1, 0, 0 })); |
| 457 | assertNotNull(storage.getColumn(global_row_key, |
| 458 | new byte[] { 1, 0, 1 })); |
| 459 | } |
| 460 | |
| 461 | @Test |
| 462 | public void deleteRange() throws Exception { |
nothing calls this directly
no test coverage detected