public Range getRange(String fullSchemaColumnName) {
// TODO : if we don't have it, we can assume integers from [0,
// distinctValues]
final ColumnInfo column = getColumnInfo(fullSchemaColumnName);
final Object min = column.getMinValue();
final Object max = column.getMaxValue();
if (min == null || max == null)
throw new RuntimeException(
"No complete information about ranges for column "
+ fullSchemaColumnName
+ "\n Either add required information to schema "