mirror of https://github.com/apache/lucene.git
SlowCompositeCodecWrapper: remove redundant FieldInfo lookup in its PointsReader.getValues method
This commit is contained in:
parent
1799cefba0
commit
0aff413797
|
@ -565,12 +565,10 @@ final class SlowCompositeCodecReaderWrapper extends CodecReader {
|
||||||
|
|
||||||
private static class SlowCompositePointsReaderWrapper extends PointsReader {
|
private static class SlowCompositePointsReaderWrapper extends PointsReader {
|
||||||
|
|
||||||
private final CodecReader[] codecReaders;
|
|
||||||
private final PointsReader[] readers;
|
private final PointsReader[] readers;
|
||||||
private final int[] docStarts;
|
private final int[] docStarts;
|
||||||
|
|
||||||
SlowCompositePointsReaderWrapper(CodecReader[] codecReaders, int[] docStarts) {
|
SlowCompositePointsReaderWrapper(CodecReader[] codecReaders, int[] docStarts) {
|
||||||
this.codecReaders = codecReaders;
|
|
||||||
this.readers =
|
this.readers =
|
||||||
Arrays.stream(codecReaders)
|
Arrays.stream(codecReaders)
|
||||||
.map(CodecReader::getPointsReader)
|
.map(CodecReader::getPointsReader)
|
||||||
|
@ -596,12 +594,9 @@ final class SlowCompositeCodecReaderWrapper extends CodecReader {
|
||||||
public PointValues getValues(String field) throws IOException {
|
public PointValues getValues(String field) throws IOException {
|
||||||
List<PointValuesSub> values = new ArrayList<>();
|
List<PointValuesSub> values = new ArrayList<>();
|
||||||
for (int i = 0; i < readers.length; ++i) {
|
for (int i = 0; i < readers.length; ++i) {
|
||||||
FieldInfo fi = codecReaders[i].getFieldInfos().fieldInfo(field);
|
if (readers[i] != null) {
|
||||||
if (fi != null && fi.getPointDimensionCount() > 0) {
|
|
||||||
PointValues v = readers[i].getValues(field);
|
PointValues v = readers[i].getValues(field);
|
||||||
if (v != null) {
|
if (v != null) {
|
||||||
// Apparently FieldInfo can claim a field has points, yet the returned
|
|
||||||
// PointValues is null
|
|
||||||
values.add(new PointValuesSub(v, docStarts[i]));
|
values.add(new PointValuesSub(v, docStarts[i]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue