SOLR-778 -- SolrQuery#getFacetMinCount() returns value of facet limit

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@696926 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2008-09-19 05:48:09 +00:00
parent 458f07b7ad
commit 9fef1d8ddc
2 changed files with 26 additions and 2 deletions

View File

@ -8,7 +8,31 @@ solrj is a java client for the solr search engine.
$Id$
================== Release 1.3-dev ==================
================== Release 1.4-dev ==================
Upgrading from Solr 1.3
-----------------------
Detailed Change List
----------------------
New Features
----------------------
Optimizations
----------------------
Bug Fixes
----------------------
1. SOLR-778: SolrQuery#getFacetMinCount() returns value of facet limit
(Kohei Taketa via shalin)
Documentation
----------------------
================== Release 1.3.0 20080915 ==================
Status
------

View File

@ -181,7 +181,7 @@ public class SolrQuery extends ModifiableSolrParams
* @return facet minimum count or default of 1
*/
public int getFacetMinCount() {
return this.getInt(FacetParams.FACET_LIMIT, 1);
return this.getInt(FacetParams.FACET_MINCOUNT, 1);
}
public SolrQuery setMissing(String fld) {