mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
Fix typo. Pointed out by Kevin Grittner.
This commit is contained in:
parent
21076076e9
commit
f3c903f867
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/catalog/objectaddress.c,v 1.2 2010/08/27 21:31:19 rhaas Exp $
|
* $PostgreSQL: pgsql/src/backend/catalog/objectaddress.c,v 1.3 2010/09/02 02:52:14 rhaas Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -215,7 +215,7 @@ get_object_address(ObjectType objtype, List *objname, List *objargs,
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
elog(ERROR, "unrecognized objtype: %d", (int) objtype);
|
elog(ERROR, "unrecognized objtype: %d", (int) objtype);
|
||||||
/* placate compiler, in case it things elog might return */
|
/* placate compiler, in case it thinks elog might return */
|
||||||
address.classId = InvalidOid;
|
address.classId = InvalidOid;
|
||||||
address.objectId = InvalidOid;
|
address.objectId = InvalidOid;
|
||||||
address.objectSubId = 0;
|
address.objectSubId = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user