I have a subclass of PythonQueryParser that overrides several methods
but I can't seem to get it to use getRangeQuery. I noticed that the
method definition in PythonQueryParser is:
getRangeQuery(String field, String part1, String part2, boolean inclusive);
but the lucene definition for QueryParser (in QueryParserBase) is:
|*getRangeQuery
<https://lucene.apache.org/core/4_4_0/queryparser/org/apache/lucene/queryparser/classic/QueryParserBase.html#getRangeQuery%28java.lang.String,%20java.lang.String,%20java.lang.String,%20boolean,%20boolean%29>*(String
<http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true> field,
String
<http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true> part1,
String
<http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true> part2,
boolean startInclusive, boolean endInclusive)|
Is that an issue?