mirror of https://github.com/apache/lucene.git
start and rows are not field parameters
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@636349 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d2617b4a2a
commit
45d3ab73a2
|
@ -382,7 +382,7 @@ public class SolrQuery extends ModifiableSolrParams
|
|||
|
||||
public Integer getRows()
|
||||
{
|
||||
return this.getFieldInt(CommonParams.ROWS, null);
|
||||
return this.getInt(CommonParams.ROWS);
|
||||
}
|
||||
|
||||
public void setShowDebugInfo(boolean showDebugInfo) {
|
||||
|
@ -405,7 +405,7 @@ public class SolrQuery extends ModifiableSolrParams
|
|||
|
||||
public Integer getStart()
|
||||
{
|
||||
return this.getFieldInt(CommonParams.START, null);
|
||||
return this.getInt(CommonParams.START);
|
||||
}
|
||||
|
||||
public void setQueryType(String qt) {
|
||||
|
|
Loading…
Reference in New Issue