@Test
public void should_delete_static_and_non_static_column() throws Exception {
//Given
Long partitionKey = RandomUtils.nextLong(0,Long.MAX_VALUE);
ClusteredEntityWithStaticColumn parisStreet = new ClusteredEntityWithStaticColumn(new ClusteredKey(partitionKey, "street1"), "Paris", "rue de la paix");
final ClusteredEntityWithStaticColumn managed = manager.insert(parisStreet);
//When
manager.delete(managed);