//Build our keyspace definition object
CKeyspaceDefinition definition = JsonUtil.objectFromJsonResource(CKeyspaceDefinition.class, this.getClass().getClassLoader(), "CCMTestData.js");
assertNotNull(definition);
//Rebuild the keyspace and get the object mapper
ObjectMapper om = cm.buildKeyspace(definition, true);
cm.setDefaultKeyspace(definition);
// Do some inserts, making sure that each one will have to prepare a new statement
List<Map<String, Object>> allInserts = Lists.newArrayList();
Map<String, Object> toInsert;