Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.9
-
New
Description
It would be good to specify some type of "schema" for the query parser in future, to automatically create NumericRangeQuery for different numeric types? It would then be possible to index a numeric value (double,float,long,int) using NumericField and then the query parser knows, which type of field this is and so it correctly creates a NumericRangeQuery for strings like "[1.567..*]" or "(1.787..19.5]".
There is currently no way to extract if a field is numeric from the index, so the user will have to configure the FieldConfig objects in the ConfigHandler. But if this is done, it will not be that difficult to implement the rest.
The only difference between the current handling of RangeQuery is then the instantiation of the correct Query type and conversion of the entered numeric values (simple Number.valueOf(...) cast of the user entered numbers). Evenerything else is identical, NumericRangeQuery also supports the MTQ rewrite modes (as it is a MTQ).
Another thing is a change in Date semantics. There are some strange flags in the current parser that tells it how to handle dates.
Attachments
Attachments
Issue Links
- is blocked by
-
LUCENE-1567 New flexible query parser
- Resolved
- is related to
-
LUCENE-3338 Flexible query parser does not support open ranges and range queries with mixed inclusive and exclusive ranges
- Closed
-
LUCENE-3352 ParametricRangeQueryNodeProcessor support for time zones
- Open
- relates to
-
LUCENE-1823 QueryParser with new features for Lucene 3
- Open