Fix misleading comment.

This commit is contained in:
Tom Lane 2005-08-30 01:07:54 +00:00
parent 78ef2d3feb
commit 139b1f61ce
1 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/catalog/pg_shdepend.c,v 1.1 2005/07/07 20:39:57 tgl Exp $ * $PostgreSQL: pgsql/src/backend/catalog/pg_shdepend.c,v 1.2 2005/08/30 01:07:54 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -727,8 +727,9 @@ dropDatabaseDependencies(Oid databaseId)
/* /*
* deleteSharedDependencyRecordsFor * deleteSharedDependencyRecordsFor
* *
* Delete all pg_shdepend entries corresponding to a database-local object * Delete all pg_shdepend entries corresponding to an object that's being
* that's being dropped or modified. * dropped or modified. The object is assumed to be either a shared object
* or local to the current database (the classId tells us which).
*/ */
void void
deleteSharedDependencyRecordsFor(Oid classId, Oid objectId) deleteSharedDependencyRecordsFor(Oid classId, Oid objectId)