MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / deleteNormalizeMs

Method deleteNormalizeMs

test/meta/TestAnnotation.java:388–402  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 5

setupStorageMethod · 0.95
getColumnMethod · 0.80
setStartTimeMethod · 0.65
setTSUIDMethod · 0.45
deleteMethod · 0.45

Tested by

no test coverage detected