return groupSchema;
}
private void calculateIndexTranslations() {
for(int schemaId = 0; schemaId < mrConfig.getIntermediateSchemas().size(); schemaId++) {
Schema sourceSchema = mrConfig.getIntermediateSchema(schemaId);
commonToIntermediateIndexes.add(getIndexTranslation(commonSchema, sourceSchema));
groupToIntermediateIndexes.add(getIndexTranslation(groupSchema, sourceSchema));
if(specificSchemas != null && !specificSchemas.isEmpty()) {
Schema particularSchema = specificSchemas.get(schemaId);
specificToIntermediateIndexes.add(getIndexTranslation(particularSchema,
sourceSchema));
}
}
commonToIntermediateIndexes = Collections