final List<Delete> deletes = Lists.newArrayList();
// Update the table schema to remove index schema details
final TableSchema existingSchema = getSchema(tableId);
final TableSchema updatedSchema = existingSchema.schemaCopy();
updatedSchema.removeIndex(indexName);
// Delete the old index
deletes.add(generateIndexDelete(tableId, indexName));
// Write the updated table schema