List<CQLStatement> indexAdds = Lists.newArrayList();
List<CIndex> newIndexes = getNewIndexes();
for(CIndex i: newIndexes){
indexAdds.add(cqlGenerator.makeWideTableCreate(NewDefinition,i));
}
ret.add(new BoundedCQLStatementIterator(indexAdds));
//note we do not need to do anything with removed indexes. As long as it's removed
//from the updated cDefinition no more writes will be processed to that table. It
// is the responsibility of the user to manually truncate and drop tables if desired.