Ishan Chattopadhyaya created LUCENE-7111:
--------------------------------------------

             Summary: DocValuesRangeQuery.newLongRange behaves incorrectly for 
Long.MAX_VALUE and Long.MIN_VALUE
                 Key: LUCENE-7111
                 URL: https://issues.apache.org/jira/browse/LUCENE-7111
             Project: Lucene - Core
          Issue Type: Bug
          Components: core/search
            Reporter: Ishan Chattopadhyaya


It seems that the following queries return all documents, which is unexpected:

{code}
DocValuesRangeQuery.newLongRange("dv", Long.MAX_VALUE, Long.MAX_VALUE, false, 
true);
DocValuesRangeQuery.newLongRange("dv", Long.MIN_VALUE, Long.MIN_VALUE, true, 
false);
{code}

In Solr, floats and doubles are converted to longs and -0d gets converted to 
Long.MIN_VALUE, and queries like {-0d TO 0d] could fail due to this, returning 
all documents in the index.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to