//make sure that the object mapper has the new keyspace definition
CKeyspaceDefinition updatedKeyspaceDefinition = om.getKeyspaceDefinition_ONLY_FOR_TESTING();
assertEquals(NewKeyspaceDefinition, updatedKeyspaceDefinition);
//make sure that the new keyspace definition has been stored in the rhombus metadata store
CKeyspaceDefinition updatedRhombusDefinition = cm.hydrateLatestKeyspaceDefinitionFromCassandra(NewKeyspaceDefinition.getName());
assertEquals(NewKeyspaceDefinition, updatedRhombusDefinition);
//now query out some data grabbing a brand new object mapper
cm = getConnectionManager();
om = cm.getObjectMapper(NewKeyspaceDefinition.getName());