()
| 386 | } |
| 387 | |
| 388 | @Test |
| 389 | public void deleteNormalizeMs() throws Exception { |
| 390 | setupStorage(false); |
| 391 | note.setTSUID(TSUID); |
| 392 | note.setStartTime(1388450562000L); |
| 393 | note.delete(tsdb).joinUninterruptibly(); |
| 394 | assertNull(storage.getColumn(tsuid_row_key, |
| 395 | new byte[] { 1, 0x0A, 0x02 })); |
| 396 | assertNotNull(storage.getColumn(tsuid_row_key, |
| 397 | new byte[] { 1, 0x0A, 0x03 })); |
| 398 | assertNotNull(storage.getColumn(tsuid_row_key, |
| 399 | new byte[] { 0x50, 0x10 })); |
| 400 | assertNotNull(storage.getColumn(tsuid_row_key, |
| 401 | new byte[] { 0x50, 0x18 })); |
| 402 | } |
| 403 | |
| 404 | // this doesn't throw an error or anything, just issues the delete request |
| 405 | // and it's ignored. |
nothing calls this directly
no test coverage detected