As i was also stuck in this, think i should share the solution that worked best for me. I also think that this is much simpler.
If you use Capitalized table name.
SELECT CONCAT("firstName", ' ', "lastName") FROM "User"
If you use lowercase table name
SELECT CONCAT(firstName, ' ', lastName) FROM user
That's it!. As PGSQL counts Double Quote for column declaration and Single Quote for string, this works like a charm.