Re: OuterHashJoin doesn't return values

2017-01-23 Thread Joel Bernstein
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

OuterHashJoin doesn't return values

2017-01-22 Thread Sadheera Vithanage
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