add missing delegations

This commit is contained in:
Mike McCandless 2016-03-02 18:45:03 -05:00
parent b5475d10e1
commit 5b1b183878
1 changed files with 10 additions and 0 deletions

View File

@ -303,6 +303,16 @@ public class SortingLeafReader extends FilterLeafReader {
public int getBytesPerDimension(String fieldName) throws IOException {
return in.getBytesPerDimension(fieldName);
}
@Override
public long size(String fieldName) {
return in.size(fieldName);
}
@Override
public int getDocCount(String fieldName) {
return in.getDocCount(fieldName);
}
}
private static class SortingSortedDocValues extends SortedDocValues {