()
| 426 | } |
| 427 | |
| 428 | @Test |
| 429 | public void deleteGlobal() throws Exception { |
| 430 | setupStorage(false); |
| 431 | note.setStartTime(1328140800); |
| 432 | note.delete(tsdb).joinUninterruptibly(); |
| 433 | assertNull(storage.getColumn(global_row_key, |
| 434 | new byte[] { 1, 0, 0 })); |
| 435 | assertNotNull(storage.getColumn(global_row_key, |
| 436 | new byte[] { 1, 0, 1 })); |
| 437 | } |
| 438 | |
| 439 | @Test |
| 440 | public void deleteGlobalSalted() throws Exception { |
nothing calls this directly
no test coverage detected