Re: [BUGS] Strange random() Correlation

2006-05-27 Thread Volkan YAZICI
On May 27 11:50, Tom Lane wrote: > Volkan YAZICI <[EMAIL PROTECTED]> writes: > > ISTM, there's a problem in the correlation of random() to outer JOINs. > > The random() functions are being evaluated more than once because the > subselect gets "flattened" into the outer query, so that you have > th

Re: [BUGS] Strange random() Correlation

2006-05-27 Thread Tom Lane
Volkan YAZICI <[EMAIL PROTECTED]> writes: > ISTM, there's a problem in the correlation of random() to outer JOINs. The random() functions are being evaluated more than once because the subselect gets "flattened" into the outer query, so that you have the equivalent of select random(), ...