Lucene hibernate search NumericRangeQuery<Float> not working on field defined with @NumericField
问题 I use hibernate search 4.1.0 with good results except for this problem. I´m trying to perform a range search in a column defined: @Field(name = "startTime", store = Store.YES) @NumericField public Float startTime; I have stored an item with startTime = 0.0f; then I try to perform a range query: NumericRangeQuery<Float> rangeQuery = NumericRangeQuery.newFloatRange( "startDate", -100000.0f, +100000.0f, true, true); FullTextQuery fullTextQuery = fullTextEntityManager .createFullTextQuery