//Build the keyspace without forcing a rebuild, but adding another index
CKeyspaceDefinition definition2 = JsonUtil.objectFromJsonResource(CKeyspaceDefinition.class
, this.getClass().getClassLoader(), "CKeyspaceTestData2.js");
assertNotNull(definition2);
cm.buildKeyspace(definition2, false);
//Select from the newly created table
ObjectMapper om = cm.getObjectMapper(definition2);
ResultSet rs = om.getCqlExecutor().executeSync(CQLStatement.make("SELECT * FROM testtype3cb23c7ffc4256283064bd5eae1886b4", "testtype"));
assertEquals(0, rs.all().size());