Fix ON CONFLICT DO UPDATE for tables with oids.

Andres Freund <andres@anarazel.de>

Commit: 617db3a2d8ad6abc0d7be623f43edc943a6640a8
Author: Andres Freund <andres@anarazel.de>
Date: 2015-09-28T17:29:44Z
Releases: 9.6.0
Fix ON CONFLICT DO UPDATE for tables with oids.

When taking the UPDATE path in an INSERT .. ON CONFLICT .. UPDATE tables
with oids were not supported. The tuple generated by the update target
list was projected without space for an oid - a simple oversight.

Reported-By: Peter Geoghegan
Author: Andres Freund
Backpatch: 9.5, where ON CONFLICT was introduced

Files