Due to PostgreSQL MVCC, an UPDATE is effectively a DELETE plus an INSERT. (To be precise, the "deleted" row is just invisible to any transaction starting after the delete and vacuumed later.) Therefore, on the database side, including index manipulation, there is in effect no difference between the two statements. It increases network traffic a bit (depending on your data) and needs a bit of parsing.
I studied HOT updates after araqnid's input and ran some tests. Updates on columns that don't actually change the value make no difference whatsoever as far as HOT updates are concerned. My answer holds. See details below.
However, if you use per-column triggers (introduced with v9.0), this my have undesired side effects!
I quote the manual on triggers:
... a command such as UPDATE ... SET x = x ... will fire a trigger on
column x, even though the column's value did not change.
Abstraction layers are for convenience. They are useful for SQL-illiterate developers or if the application needs to be portable between different RDBMSes. On the downside, they butcher performance and introduce additional points of failure. I avoid them wherever possible.
Concerning HOT (Heap-only tuple) updates
Heap-Only Tuples were introduced with PostgreSQL 8.3. Important fixes in v8.3.4 and v8.4.9.
I quote the release notes:
UPDATEs and DELETEs leave dead tuples behind, as do failed INSERTs.
Previously only VACUUM could reclaim space taken by dead tuples. With
HOT dead tuple space can be automatically reclaimed at the time of
INSERT or UPDATE if no changes are made to indexed columns. This
allows for more consistent performance. Also, HOT avoids adding
duplicate index entries.
Emphasis mine. And "no changes" includes cases where columns are updated with the same value as they already hold. I actually tested that just now, as I wasn't sure.
You don't have to rely on theory or take my word for it. See for yourself, postgres provides a couple of functions to check statistics. Run your UPDATE with and without all columns and check if it makes any difference.
-- Number of rows HOT-updated in table:
SELECT pg_stat_get_tuples_hot_updated('table_name'::regclass::oid)
-- Number of rows HOT-updated in table, in the current transaction:
SELECT pg_stat_get_xact_tuples_hot_updated('table_name'::regclass::oid)
Or, more conveniently, use pgAdmin. Select your table and inspect the "Statistics" tab in the main window.
Be aware that HOT updates can only happens when there is room on the same page for
the new tuple version. One simple way to force that condition is to test with a small table that holds only a few rows. Page size is 8k normally, so there must bee free space on the page.