Issues
- Inclusive flags swapped for numeric range queriesHSEARCH-1378Resolved issue: HSEARCH-1378Gunnar Morling
- Polish some minor concurrency mistakesHSEARCH-1377Resolved issue: HSEARCH-1377Sanne Grinovero
- IDE project import error on Windows: com.sun:tools dependency missingHSEARCH-1374Resolved issue: HSEARCH-1374Sanne Grinovero
- Update Maven plugin versionsHSEARCH-1371Resolved issue: HSEARCH-1371Sanne Grinovero
- Allow ORM SessionFactory to be completely created prior to bootstrapping the Search factoryHSEARCH-1366Resolved issue: HSEARCH-1366Hardy Ferentschik
- Formatting and style improvements in the documentationHSEARCH-1363Resolved issue: HSEARCH-1363Sanne Grinovero
- Upgrade to Infinispan 5.3.0.Final and JGroups 3.3.2HSEARCH-1362Resolved issue: HSEARCH-1362Sanne Grinovero
- Upgrade to Hibernate ORM 4.2.3.FinalHSEARCH-1361Resolved issue: HSEARCH-1361Sanne Grinovero
- UpdateIndexedEmbeddedCollectionTest failing on Oracle, DB2 and MySQL of too long table namesHSEARCH-1360Resolved issue: HSEARCH-1360Sanne Grinovero
- Rename EntityIndexBinder to EntityIndexBindingHSEARCH-1355Resolved issue: HSEARCH-1355Hardy Ferentschik
- Document parse failures need graceful recoveryHSEARCH-1354Resolved issue: HSEARCH-1354Hardy Ferentschik
- Clarify limitations of programmatic mapping not recognizing inherited propertiesHSEARCH-1352Resolved issue: HSEARCH-1352Sanne Grinovero
- Checkstyle ImprovementHSEARCH-1326Resolved issue: HSEARCH-1326Davide D'Alto
- Verify Hibernate Envers integrationHSEARCH-1293Resolved issue: HSEARCH-1293Davide Di Somma
- QueryBuilder should support specialization by superclasses of indexed entitiesHSEARCH-703Resolved issue: HSEARCH-703Gunnar Morling
- Expose a metadata APIHSEARCH-436Resolved issue: HSEARCH-436Hardy Ferentschik
16 of 16
Inclusive flags swapped for numeric range queries
Fixed
Description
Details
Assignee
Gunnar MorlingGunnar MorlingReporter
Gunnar MorlingGunnar MorlingComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Gunnar Morling
Gunnar MorlingReporter
Gunnar Morling
Gunnar MorlingComponents
Fix versions
Affects versions
Priority
Created July 31, 2013 at 1:20 PM
Updated August 2, 2013 at 11:49 AM
Resolved July 31, 2013 at 2:33 PM
Activity
Show:
Gunnar MorlingJuly 31, 2013 at 2:11 PM
Pull request https://github.com/hibernate/hibernate-search/pull/463 sent.
A query created like this:
should result in this Lucene query (lower bound exclusive):
But it does result in this query instead:
The reason seems to be that in
ConnectedMultiFieldsRangeQueryBuilder#createQuery()
the flags are passed in the wrong order toNumericFieldUtils#createNumericRangeQuery()
.