Re: LTR and 'searching' a streaming expression result

2018-02-26 Thread Gintautas Sulskus
Thanks very much, Joel. On Fri, Feb 23, 2018 at 4:36 PM, Joel Bernstein wrote: > In the scenario you describe above the answer is no. That's because the > joins rely on the sort order of the result set and require exporting of the > entire result set. Both those requirements will not work with l

Re: LTR and 'searching' a streaming expression result

2018-02-23 Thread Joel Bernstein
In the scenario you describe above the answer is no. That's because the joins rely on the sort order of the result set and require exporting of the entire result set. Both those requirements will not work with ltr. The search expression though could be used with ltr and the fetch expression, which

LTR and 'searching' a streaming expression result

2018-02-23 Thread Gintautas Sulskus
Hi, Is it possible to apply another search to a streaming expression result? E.g. to use leftOuterJoin as a source for search: search( leftOuterJoin( leftOuterJoin(search(), search()) leftOuterJoin(..) ), q=... ) Is it possible to apply LTR to the streaming expres