get_object_address(ObjectType objtype, Node *object,
Relation *relp, LOCKMODE lockmode, bool missing_ok)
{
- ObjectAddress address;
+ ObjectAddress address = {InvalidOid, InvalidOid, 0};
ObjectAddress old_address = {InvalidOid, InvalidOid, 0};
Relation relation = NULL;
uint64 inval_count;
&relation, lockmode,
missing_ok);
break;
+ case OBJECT_ATTRIBUTE:
case OBJECT_COLUMN:
address =
get_object_address_attribute(objtype, castNode(List, object),
missing_ok);
address.objectSubId = 0;
break;
- default:
- elog(ERROR, "unrecognized object type: %d", (int) objtype);
- /* placate compiler, in case it thinks elog might return */
- address.classId = InvalidOid;
- address.objectId = InvalidOid;
- address.objectSubId = 0;
+ /* no default, to let compiler warn about missing case */
}
+ if (!address.classId)
+ elog(ERROR, "unrecognized object type: %d", (int) objtype);
+
/*
* If we could not find the supplied object, return without locking.
*/
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
errmsg("must be superuser")));
break;
- default:
- elog(ERROR, "unrecognized object type: %d",
- (int) objtype);
+ case OBJECT_AMOP:
+ case OBJECT_AMPROC:
+ case OBJECT_DEFAULT:
+ case OBJECT_DEFACL:
+ case OBJECT_PUBLICATION_NAMESPACE:
+ case OBJECT_PUBLICATION_REL:
+ case OBJECT_USER_MAPPING:
+ /* These are currently not supported or don't make sense here. */
+ elog(ERROR, "unsupported object type: %d", (int) objtype);
+ break;
}
}
msg = gettext_noop("publication \"%s\" does not exist, skipping");
name = strVal(object);
break;
- default:
- elog(ERROR, "unrecognized object type: %d", (int) objtype);
+
+ case OBJECT_COLUMN:
+ case OBJECT_DATABASE:
+ case OBJECT_FOREIGN_TABLE:
+ case OBJECT_INDEX:
+ case OBJECT_MATVIEW:
+ case OBJECT_ROLE:
+ case OBJECT_SEQUENCE:
+ case OBJECT_SUBSCRIPTION:
+ case OBJECT_TABLE:
+ case OBJECT_TABLESPACE:
+ case OBJECT_VIEW:
+ /*
+ * These are handled elsewhere, so if someone gets here the code
+ * is probably wrong or should be revisited.
+ */
+ elog(ERROR, "unsupported object type: %d", (int) objtype);
+ break;
+
+ case OBJECT_AMOP:
+ case OBJECT_AMPROC:
+ case OBJECT_ATTRIBUTE:
+ case OBJECT_DEFAULT:
+ case OBJECT_DEFACL:
+ case OBJECT_DOMCONSTRAINT:
+ case OBJECT_LARGEOBJECT:
+ case OBJECT_PARAMETER_ACL:
+ case OBJECT_PUBLICATION_NAMESPACE:
+ case OBJECT_PUBLICATION_REL:
+ case OBJECT_TABCONSTRAINT:
+ case OBJECT_USER_MAPPING:
+ /* These are currently not used or needed. */
+ elog(ERROR, "unsupported object type: %d", (int) objtype);
break;
+
+ /* no default, to let compiler warn about missing case */
}
+ if (!msg)
+ elog(ERROR, "unrecognized object type: %d", (int) objtype);
if (!args)
ereport(NOTICE, (errmsg(msg, name)));