mirror of https://github.com/apache/lucene.git
LUCENE-3312: Apply patch lucene-3312-patch-09.patch
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3312@1371131 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
81cf4938ca
commit
e7811cfa6c
|
@ -89,7 +89,7 @@ public class BinaryResponseWriter implements BinaryQueryResponseWriter {
|
||||||
writeResults(ctx, codec);
|
writeResults(ctx, codec);
|
||||||
return null; // null means we completely handled it
|
return null; // null means we completely handled it
|
||||||
}
|
}
|
||||||
if( o instanceof IndexableField ) {
|
if( o instanceof StorableField ) {
|
||||||
if(schema == null) schema = solrQueryRequest.getSchema();
|
if(schema == null) schema = solrQueryRequest.getSchema();
|
||||||
|
|
||||||
StorableField f = (StorableField)o;
|
StorableField f = (StorableField)o;
|
||||||
|
|
|
@ -445,10 +445,6 @@ public class DateField extends PrimitiveFieldType {
|
||||||
minInclusive, maxInclusive);
|
minInclusive, maxInclusive);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String storedToIndexed(GeneralField f) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue