Off-by-one error in calculating numFound in Distributed Search
--------------------------------------------------------------
Key: SOLR-1701
URL: https://issues.apache.org/jira/browse/SOLR-1701
Project: Solr
Issue Type: Bug
Components: search
Reporter: Shalin Shekhar Mangar
Fix For: 1.5
{code}
// This passes
query("q", "*:*", "sort", "id asc", "fl", "id,text");
// This also passes (notice the rows param)
query("q", "*:*", "sort", "id desc", "rows", "12", "fl", "id,text");
// But this fails
query("q", "*:*", "sort", "id desc", "fl", "id,text");
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.