Re: strange evaluation Window function and SRF functions? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: strange evaluation Window function and SRF functions?
Date
Msg-id 1061.1343665860@sss.pgh.pa.us
Whole thread Raw
In response to strange evaluation Window function and SRF functions?  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-hackers
Pavel Stehule <pavel.stehule@gmail.com> writes:
> I seen nice trick based on window function
> http://stackoverflow.com/questions/11700930/how-can-i-trim-a-text-array-in-postgresql

> but isn't it example of wrong evaluation? Result of row_number is not
> correct

Sure it is ... or at least, you won't find anything in the SQL spec that
says it isn't.  The result of a window function is only dependent on the
state of the input, not on SRFs that might happen to be in sibling
SELECT expressions.  (This is one example of why SRFs in SELECT lists
aren't terribly well defined.)

A bigger problem with that query is that there's no guarantee it will
preserve ordering of the elements of the arrays.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Pavel Stehule
Date:
Subject: strange evaluation Window function and SRF functions?
Next
From: Thom Brown
Date:
Subject: Re: strange evaluation Window function and SRF functions?