mirror of https://github.com/apache/lucene.git
add missing delegations
This commit is contained in:
parent
b5475d10e1
commit
5b1b183878
|
@ -303,6 +303,16 @@ public class SortingLeafReader extends FilterLeafReader {
|
||||||
public int getBytesPerDimension(String fieldName) throws IOException {
|
public int getBytesPerDimension(String fieldName) throws IOException {
|
||||||
return in.getBytesPerDimension(fieldName);
|
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 {
|
private static class SortingSortedDocValues extends SortedDocValues {
|
||||||
|
|
Loading…
Reference in New Issue