When you work with relational algebra operations you'll need to specify the
/export handler in the search expressions so that all of the tuples are
operated on by the join.
search(ParentDocuments, q=DocId:1042, fl="Id,DocId,SubDocId", sort="Id asc",
q="/export")
Joel Bernstein
http://joelsolr.bl
Hello,
When I issue a OuterHashJoin (stream expression) as below it doesn't return
any results from the right stream.
outerHashJoin(
search(ChildDocuments, q=*:* , fl="ContentId", sort="ContentId asc"),
hashed=
search(ParentDocuments, q=*:*, fl="Id,DocId,SubDocId", sort="Id asc"),
on="ContentId=I