You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2018/01/23 13:28:16 UTC

[44/51] lucene-solr:jira/solr-11714: SOLR-11834: ref-guide: [subquery] doesn't need top level fl to repeat subq.fl

SOLR-11834: ref-guide: [subquery] doesn't need top level fl to repeat subq.fl


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/42832f88
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/42832f88
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/42832f88

Branch: refs/heads/jira/solr-11714
Commit: 42832f8839785eb9abefe8eba65a236360eec5e1
Parents: 2900bb5
Author: Mikhail Khludnev <mk...@apache.org>
Authored: Wed Jan 17 22:51:27 2018 +0300
Committer: Mikhail Khludnev <mk...@apache.org>
Committed: Wed Jan 17 22:52:12 2018 +0300

----------------------------------------------------------------------
 solr/solr-ref-guide/src/transforming-result-documents.adoc | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/42832f88/solr/solr-ref-guide/src/transforming-result-documents.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/transforming-result-documents.adoc b/solr/solr-ref-guide/src/transforming-result-documents.adoc
index 09ae314..1a0104f 100644
--- a/solr/solr-ref-guide/src/transforming-result-documents.adoc
+++ b/solr/solr-ref-guide/src/transforming-result-documents.adoc
@@ -250,14 +250,12 @@ Here is how it looks like in various formats:
 
 ==== Subquery Result Fields
 
-To appear in subquery document list, a field should be specified both fl parameters, in main one fl (despite the main result documents have no this field) and in subquery's one e.g., `foo.fl`. Of course, you can use wildcard in any or both of these parameters. For example, if field title should appear in categories subquery, it can be done via one of these ways.
+To appear in subquery document list, a field should be specified in subquery's `fl` parameter e.g., `foo.fl` (it is not necessary to specify in main one's `fl`). Of course, you can use wildcard in this parameter. For example, if field title should appear in categories subquery, it can be done via one of these ways.
 
 [source,plain]
 ----
-fl=...title,categories:[subquery]&categories.fl=title&categories.q=...
-fl=...title,categories:[subquery]&categories.fl=*&categories.q=...
-fl=...*,categories:[subquery]&categories.fl=*&categories.q=...
-fl=...*,categories:[subquery]&categories.fl=*&categories.q=...
+fl=...id,categories:[subquery]&categories.fl=title&categories.q=...
+fl=...id,categories:[subquery]&categories.fl=*&categories.q=...
 ----
 
 ==== Subquery Parameters Shift