/////////////////////// ONLY STATIC SIMPLE COLUMNS ////////////////////////////////
@Test
public void should_query_all_static_columns() throws Exception {
Long partitionKey = RandomUtils.nextLong(0,Long.MAX_VALUE);
ClusteredEntityWithOnlyStaticColumns location = new ClusteredEntityWithOnlyStaticColumns(new ClusteredOnlyStaticColumnsKey(partitionKey, "location"), "Paris", "rue de la paix");
manager.insert(location);
List<ClusteredEntityWithOnlyStaticColumns> found = manager.sliceQuery(ClusteredEntityWithOnlyStaticColumns.class)
.forSelect()