This code relies heavily on functionality in the intarray extension. Once you know that you can work it out by breaking it down into steps.
It looks to me like some kind of poor-man's crypto or obfuscation routine, but you've failed to provide any information about its inputs so it's hard to say more. Essentially it returns a sorted, de-duplicated subset of the passed array, deciding which subset to return based on the number of elements in the array. If I read it correctly it removes the value 627964279 from the array if it appears there, then returns 120 elements (before de-duplication) from an offset of 0 and 80 elements into the array depending on the number of elements in the array.
Create a test database. I'll call mine regress. Create it and install the intarray contrib module into it as a superuser:
sudo -u postgres createdb -O myusername regress
sudo -u postgres psql regress -c 'CREATE EXTENSION intarray;'
Now running as myusername, whatever your unpriveleged user account is, break the code down into steps and try each step. Just like you would in C. It might help to format it into expressions:
SELECT uniq(sort(
subarray(
$1 - 627964279,
greatest(
0,
least(
icount($1 - 627964279) - 120,
80
)
)
, 120
)
));
then evaluate each sub-expression by hand with a known input, substituting results as you go and simplifying the expression while jotting down what it does. I can't do it for you because you haven't supplied a sample input, but, replacing ARRAY[42,5,9,24,1,627964279] with your input array you'd do something like:
$ psql regress
psql (9.2.1)
Type "help" for help.
regress=> SELECT ARRAY[42,5,9,24,1,627964279];
array
-------------------------
{42,5,9,24,1,627964279}
(1 row)
regress=> SELECT ARRAY[42,5,9,24,1,627964279] - 627964279;
?column?
---------------
{42,5,9,24,1}
(1 row)
regress=> SELECT icount(ARRAY[42,5,9,24,1,627964279] - 627964279);
icount
--------
5
(1 row)
regress=> SELECT least(icount(ARRAY[42,5,9,24,1,627964279] - 627964279),80);
least
-------
5
(1 row)
regress=>
regress=> SELECT greatest(least(icount(ARRAY[42,5,9,24,1,627964279] - 627964279),80),0);
greatest
----------
5
(1 row)
Now, by substituting 5 for the expression greatest(...) into the subarray expression we get:
SELECT subarray($1 - 627964279, 5, 120 )
which is after the evaluation of the array item removal:
regress=> SELECT subarray(ARRAY[42,5,9,24,1], 5, 120);
subarray
----------
{1}
(1 row)
In this case the sort and uniq have no further effect.
What's it for? Who knows, as you haven't provided an input array that might offer clues.
See the intarray documentation.
uniq,sort,subarray,greatest,leastandicountfunctions. When you have a specific question on those, people can help you. – Jonathan Leffler Nov 11 '12 at 15:46greatestandleastare explained in the PostgreSQL manual.uniq,sort,subarrayandicountmust be other user supplied functions. – A.H. Nov 11 '12 at 18:19sort,icount,subarray, anduniq. – Jonathan Leffler Nov 11 '12 at 18:55