SOLR-6905: Test pseudo-field retrieval in distributed search

This closes #122.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1649110 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2015-01-02 20:08:16 +00:00
parent 6791a405b4
commit c2d9d1c602
2 changed files with 8 additions and 0 deletions

View File

@ -602,6 +602,9 @@ Other Changes
* SOLR-6906: Fix typo bug in DistributedDebugComponentTest.testCompareWithNonDistributedRequest * SOLR-6906: Fix typo bug in DistributedDebugComponentTest.testCompareWithNonDistributedRequest
(Ramkumar Aiyenga via Erick Erickson) (Ramkumar Aiyenga via Erick Erickson)
* SOLR-6905: Test pseudo-field retrieval in distributed search.
(Ramkumar Aiyengar via shalin)
================== 4.10.3 ================== ================== 4.10.3 ==================
Bug Fixes Bug Fixes

View File

@ -315,6 +315,11 @@ public class TestDistributedSearch extends BaseDistributedSearchTestCase {
query("q","*:*", "fl",i1, "fl", "id","sort",i1 + " desc"); query("q","*:*", "fl",i1, "fl", "id","sort",i1 + " desc");
query("q","*:*", "fl", "id", "fl",nint, "fl",tint,"sort",i1 + " desc"); query("q","*:*", "fl", "id", "fl",nint, "fl",tint,"sort",i1 + " desc");
query("q","*:*", "fl",nint, "fl", "id", "fl",tint,"sort",i1 + " desc"); query("q","*:*", "fl",nint, "fl", "id", "fl",tint,"sort",i1 + " desc");
handle.put("did", SKIPVAL);
query("q","*:*", "fl","did:[docid]","sort",i1 + " desc");
handle.remove("did");
query("q","*:*", "fl","log(" + tlong + "),abs(" + tlong + "),score","sort",i1 + " desc");
query("q","*:*", "fl","n_*","sort",i1 + " desc");
// basic spellcheck testing // basic spellcheck testing
query("q", "toyata", "fl", "id,lowerfilt", "spellcheck", true, "spellcheck.q", "toyata", "qt", "spellCheckCompRH_Direct", "shards.qt", "spellCheckCompRH_Direct"); query("q", "toyata", "fl", "id,lowerfilt", "spellcheck", true, "spellcheck.q", "toyata", "qt", "spellCheckCompRH_Direct", "shards.qt", "spellCheckCompRH_Direct");