mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
Unify drop-by-OID functions
There are a number of Remove${Something}ById() functions that are essentially identical in structure and only different in which catalog they are working on. Refactor this to be one generic function. The information about which oid column, index, etc. to use was already available in ObjectProperty for most catalogs, in a few cases it was easily added. Reviewed-by: Pavel Stehule <pavel.stehule@gmail.com> Reviewed-by: Robert Haas <robertmhaas@gmail.com> Discussion: https://www.postgresql.org/message-id/flat/331d9661-1743-857f-1cbb-d5728bcd62cb%402ndquadrant.com
This commit is contained in:
@ -115,33 +115,6 @@ CreateAccessMethod(CreateAmStmt *stmt)
|
||||
return myself;
|
||||
}
|
||||
|
||||
/*
|
||||
* Guts of access method deletion.
|
||||
*/
|
||||
void
|
||||
RemoveAccessMethodById(Oid amOid)
|
||||
{
|
||||
Relation relation;
|
||||
HeapTuple tup;
|
||||
|
||||
if (!superuser())
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
|
||||
errmsg("must be superuser to drop access methods")));
|
||||
|
||||
relation = table_open(AccessMethodRelationId, RowExclusiveLock);
|
||||
|
||||
tup = SearchSysCache1(AMOID, ObjectIdGetDatum(amOid));
|
||||
if (!HeapTupleIsValid(tup))
|
||||
elog(ERROR, "cache lookup failed for access method %u", amOid);
|
||||
|
||||
CatalogTupleDelete(relation, &tup->t_self);
|
||||
|
||||
ReleaseSysCache(tup);
|
||||
|
||||
table_close(relation, RowExclusiveLock);
|
||||
}
|
||||
|
||||
/*
|
||||
* get_am_type_oid
|
||||
* Worker for various get_am_*_oid variants
|
||||
|
Reference in New Issue
Block a user