SOLR-1932: assume no preflex here, these stats are new in 4.x indexes

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1142511 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-07-03 22:26:22 +00:00
parent 3f5c0eca5b
commit ae27b645a4
1 changed files with 22 additions and 1 deletions

View File

@ -18,6 +18,7 @@
package org.apache.solr.search.function;
import org.apache.lucene.index.FieldInvertState;
import org.apache.lucene.index.codecs.CodecProvider;
import org.apache.lucene.search.DefaultSimilarity;
import org.apache.lucene.search.FieldCache;
import org.apache.lucene.search.Similarity;
@ -303,7 +304,6 @@ public class TestFunctionQuery extends SolrTestCaseJ4 {
assertQ(req("fl","*,score","q", "{!func}docfreq('a_t','cow')", "fq","id:6"), "//float[@name='score']='3.0'");
assertQ(req("fl","*,score","q", "{!func}docfreq($field,$value)", "fq","id:6", "field","a_t", "value","cow"), "//float[@name='score']='3.0'");
assertQ(req("fl","*,score","q", "{!func}termfreq(a_t,cow)", "fq","id:6"), "//float[@name='score']='5.0'");
assertQ(req("fl","*,score","q", "{!func}totaltermfreq('a_t','cow')", "fq","id:6"), "//float[@name='score']='7.0'");
Similarity similarity = new DefaultSimilarity();
@ -396,6 +396,27 @@ public class TestFunctionQuery extends SolrTestCaseJ4 {
purgeFieldCache(FieldCache.DEFAULT); // avoid FC insanity
}
/**
* test collection-level term stats (new in 4.x indexes)
*/
public void testTotalTermFreq() throws Exception {
assumeFalse("PreFlex codec does not support collection-level term stats",
"PreFlex".equals(CodecProvider.getDefault().getDefaultFieldCodec()));
clearIndex();
assertU(adoc("id","1", "a_tdt","2009-08-31T12:10:10.123Z", "b_tdt","2009-08-31T12:10:10.124Z"));
assertU(adoc("id","2", "a_t","how now brown cow"));
assertU(commit()); // create more than one segment
assertU(adoc("id","3", "a_t","brown cow"));
assertU(adoc("id","4"));
assertU(commit()); // create more than one segment
assertU(adoc("id","5"));
assertU(adoc("id","6", "a_t","cow cow cow cow cow"));
assertU(commit());
assertQ(req("fl","*,score","q", "{!func}totaltermfreq('a_t','cow')", "fq","id:6"), "//float[@name='score']='7.0'");
}
@Test
public void testSortByFunc() throws Exception {
assertU(adoc("id", "1", "const_s", "xx", "x_i", "100", "1_s", "a"));