Github user dsmiley commented on a diff in the pull request:
https://github.com/apache/lucene-solr/pull/443#discussion_r214044911
--- Diff:
solr/core/src/java/org/apache/solr/response/transform/ChildDocTransformerFactory.java
---
@@ -106,9 +107,12 @@ public DocTransformer create(String field, SolrParams
params, SolrQueryRequest r
}
}
+ String childReturnFields = params.get("fl");
+ SolrReturnFields childSolrReturnFields = childReturnFields==null? new
SolrReturnFields(): new SolrReturnFields(childReturnFields ,req);
--- End diff --
Shouldn't this default to the top level "fl"? I think so. Even if it
didn't do this before, it in-effect behaves this way and it makes sense (to me)
that it would.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]