mirror of https://github.com/apache/lucene.git
SOLR-1726: disable deep paging
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1239326 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
07d334be9b
commit
8eca88f9d4
|
@ -216,9 +216,13 @@ public abstract class QParser {
|
|||
*/
|
||||
public ScoreDoc getPaging() throws ParseException
|
||||
{
|
||||
String pageScoreS = null;
|
||||
String pageDocS = null;
|
||||
|
||||
return null;
|
||||
|
||||
/*** This is not ready for prime-time... see SOLR-1726
|
||||
|
||||
String pageScoreS = null;
|
||||
String pageDocS = null;
|
||||
|
||||
pageScoreS = params.get(CommonParams.PAGESCORE);
|
||||
pageDocS = params.get(CommonParams.PAGEDOC);
|
||||
|
||||
|
@ -233,6 +237,8 @@ public abstract class QParser {
|
|||
else {
|
||||
return null;
|
||||
}
|
||||
|
||||
***/
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -55,6 +55,7 @@ import org.apache.solr.update.DirectUpdateHandler2;
|
|||
|
||||
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
|
@ -763,7 +764,7 @@ public class BasicFunctionalityTest extends SolrTestCaseJ4 {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@Ignore("See SOLR-1726")
|
||||
@Test
|
||||
public void testDeepPaging() throws Exception {
|
||||
for (int i = 0; i < 1000; i++){
|
||||
|
|
Loading…
Reference in New Issue