Thomas Good <tomg(at)q8(dot)nrnet(dot)org> writes:
> The || operator needs parentheses to concat > 2 items in Pg 6.3.2.
> Has this been fixed in subsequent versions?
You're still on 6.3.2? Run, do not walk, to your nearest archive
site for an update ...
Yes, || is marked left-associative in more recent versions.
regression=# select 'a' || 'b' || 'c';
?column?
----------
abc
(1 row)
regards, tom lane