* @param indexName Name of index schema [Not null, Not empty]
* @return Index schema by name indexName
*/
public IndexSchema getIndexSchema(String indexName) {
Verify.isNotNullOrEmpty(indexName);
AvroIndexSchema indexSchema = avroTableSchema.getIndices().get(indexName);
return new IndexSchema(indexName, indexSchema);
}