Commit 864db116 authored by Tom Lane's avatar Tom Lane

Update obsolete comment.

We no longer use GetNewOidWithIndex on pg_largeobject; rather,
pg_largeobject_metadata's regular OID column is considered the repository
of OIDs for large objects.  The special functionality is still needed for
TOAST tables however.
parent 8255566f
...@@ -472,10 +472,10 @@ GetNewOid(Relation relation) ...@@ -472,10 +472,10 @@ GetNewOid(Relation relation)
* *
* This is exported separately because there are cases where we want to use * This is exported separately because there are cases where we want to use
* an index that will not be recognized by RelationGetOidIndex: TOAST tables * an index that will not be recognized by RelationGetOidIndex: TOAST tables
* and pg_largeobject have indexes that are usable, but have multiple columns * have indexes that are usable, but have multiple columns and are on
* and are on ordinary columns rather than a true OID column. This code * ordinary columns rather than a true OID column. This code will work
* will work anyway, so long as the OID is the index's first column. The * anyway, so long as the OID is the index's first column. The caller must
* caller must pass in the actual heap attnum of the OID column, however. * pass in the actual heap attnum of the OID column, however.
* *
* Caller must have a suitable lock on the relation. * Caller must have a suitable lock on the relation.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment