From 864db11683df44dae51f8f9fc8a4c124e100d2f3 Mon Sep 17 00:00:00 2001 From: Tom Lane <tgl@sss.pgh.pa.us> Date: Wed, 10 Oct 2012 17:04:37 -0400 Subject: [PATCH] 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. --- src/backend/catalog/catalog.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index 2547f33552e..79b71b34912 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -472,10 +472,10 @@ GetNewOid(Relation relation) * * This is exported separately because there are cases where we want to use * an index that will not be recognized by RelationGetOidIndex: TOAST tables - * and pg_largeobject have indexes that are usable, but have multiple columns - * and are on ordinary columns rather than a true OID column. This code - * will work anyway, so long as the OID is the index's first column. The - * caller must pass in the actual heap attnum of the OID column, however. + * have indexes that are usable, but have multiple columns and are on + * ordinary columns rather than a true OID column. This code will work + * anyway, so long as the OID is the index's first column. The caller must + * pass in the actual heap attnum of the OID column, however. * * Caller must have a suitable lock on the relation. */ -- GitLab