PostgreSQL Source Code  git master
alter.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * alter.c
4  * Drivers for generic alter commands
5  *
6  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  * src/backend/commands/alter.c
12  *
13  *-------------------------------------------------------------------------
14  */
15 #include "postgres.h"
16 
17 #include "access/htup_details.h"
18 #include "access/relation.h"
19 #include "access/table.h"
20 #include "catalog/dependency.h"
21 #include "catalog/indexing.h"
22 #include "catalog/namespace.h"
23 #include "catalog/objectaccess.h"
24 #include "catalog/pg_collation.h"
25 #include "catalog/pg_conversion.h"
26 #include "catalog/pg_database_d.h"
30 #include "catalog/pg_language.h"
31 #include "catalog/pg_largeobject.h"
33 #include "catalog/pg_namespace.h"
34 #include "catalog/pg_opclass.h"
35 #include "catalog/pg_operator.h"
36 #include "catalog/pg_opfamily.h"
37 #include "catalog/pg_proc.h"
40 #include "catalog/pg_ts_config.h"
41 #include "catalog/pg_ts_dict.h"
42 #include "catalog/pg_ts_parser.h"
43 #include "catalog/pg_ts_template.h"
44 #include "commands/alter.h"
45 #include "commands/collationcmds.h"
46 #include "commands/dbcommands.h"
47 #include "commands/defrem.h"
48 #include "commands/event_trigger.h"
49 #include "commands/extension.h"
50 #include "commands/policy.h"
52 #include "commands/schemacmds.h"
54 #include "commands/tablecmds.h"
55 #include "commands/tablespace.h"
56 #include "commands/trigger.h"
57 #include "commands/typecmds.h"
58 #include "commands/user.h"
59 #include "miscadmin.h"
61 #include "rewrite/rewriteDefine.h"
62 #include "utils/acl.h"
63 #include "utils/builtins.h"
64 #include "utils/lsyscache.h"
65 #include "utils/rel.h"
66 #include "utils/syscache.h"
67 
68 static Oid AlterObjectNamespace_internal(Relation rel, Oid objid, Oid nspOid);
69 
70 /*
71  * Raise an error to the effect that an object of the given name is already
72  * present in the given namespace.
73  */
74 static void
75 report_name_conflict(Oid classId, const char *name)
76 {
77  char *msgfmt;
78 
79  switch (classId)
80  {
81  case EventTriggerRelationId:
82  msgfmt = gettext_noop("event trigger \"%s\" already exists");
83  break;
84  case ForeignDataWrapperRelationId:
85  msgfmt = gettext_noop("foreign-data wrapper \"%s\" already exists");
86  break;
87  case ForeignServerRelationId:
88  msgfmt = gettext_noop("server \"%s\" already exists");
89  break;
90  case LanguageRelationId:
91  msgfmt = gettext_noop("language \"%s\" already exists");
92  break;
93  case PublicationRelationId:
94  msgfmt = gettext_noop("publication \"%s\" already exists");
95  break;
96  case SubscriptionRelationId:
97  msgfmt = gettext_noop("subscription \"%s\" already exists");
98  break;
99  default:
100  elog(ERROR, "unsupported object class: %u", classId);
101  break;
102  }
103 
104  ereport(ERROR,
106  errmsg(msgfmt, name)));
107 }
108 
109 static void
110 report_namespace_conflict(Oid classId, const char *name, Oid nspOid)
111 {
112  char *msgfmt;
113 
114  Assert(OidIsValid(nspOid));
115 
116  switch (classId)
117  {
118  case ConversionRelationId:
119  Assert(OidIsValid(nspOid));
120  msgfmt = gettext_noop("conversion \"%s\" already exists in schema \"%s\"");
121  break;
122  case StatisticExtRelationId:
123  Assert(OidIsValid(nspOid));
124  msgfmt = gettext_noop("statistics object \"%s\" already exists in schema \"%s\"");
125  break;
126  case TSParserRelationId:
127  Assert(OidIsValid(nspOid));
128  msgfmt = gettext_noop("text search parser \"%s\" already exists in schema \"%s\"");
129  break;
130  case TSDictionaryRelationId:
131  Assert(OidIsValid(nspOid));
132  msgfmt = gettext_noop("text search dictionary \"%s\" already exists in schema \"%s\"");
133  break;
134  case TSTemplateRelationId:
135  Assert(OidIsValid(nspOid));
136  msgfmt = gettext_noop("text search template \"%s\" already exists in schema \"%s\"");
137  break;
138  case TSConfigRelationId:
139  Assert(OidIsValid(nspOid));
140  msgfmt = gettext_noop("text search configuration \"%s\" already exists in schema \"%s\"");
141  break;
142  default:
143  elog(ERROR, "unsupported object class: %u", classId);
144  break;
145  }
146 
147  ereport(ERROR,
149  errmsg(msgfmt, name, get_namespace_name(nspOid))));
150 }
151 
152 /*
153  * AlterObjectRename_internal
154  *
155  * Generic function to rename the given object, for simple cases (won't
156  * work for tables, nor other cases where we need to do more than change
157  * the name column of a single catalog entry).
158  *
159  * rel: catalog relation containing object (RowExclusiveLock'd by caller)
160  * objectId: OID of object to be renamed
161  * new_name: CString representation of new name
162  */
163 static void
164 AlterObjectRename_internal(Relation rel, Oid objectId, const char *new_name)
165 {
166  Oid classId = RelationGetRelid(rel);
167  int oidCacheId = get_object_catcache_oid(classId);
168  int nameCacheId = get_object_catcache_name(classId);
169  AttrNumber Anum_name = get_object_attnum_name(classId);
170  AttrNumber Anum_namespace = get_object_attnum_namespace(classId);
171  AttrNumber Anum_owner = get_object_attnum_owner(classId);
172  HeapTuple oldtup;
173  HeapTuple newtup;
174  Datum datum;
175  bool isnull;
176  Oid namespaceId;
177  Oid ownerId;
178  char *old_name;
179  AclResult aclresult;
180  Datum *values;
181  bool *nulls;
182  bool *replaces;
183  NameData nameattrdata;
184 
185  oldtup = SearchSysCache1(oidCacheId, ObjectIdGetDatum(objectId));
186  if (!HeapTupleIsValid(oldtup))
187  elog(ERROR, "cache lookup failed for object %u of catalog \"%s\"",
188  objectId, RelationGetRelationName(rel));
189 
190  datum = heap_getattr(oldtup, Anum_name,
191  RelationGetDescr(rel), &isnull);
192  Assert(!isnull);
193  old_name = NameStr(*(DatumGetName(datum)));
194 
195  /* Get OID of namespace */
196  if (Anum_namespace > 0)
197  {
198  datum = heap_getattr(oldtup, Anum_namespace,
199  RelationGetDescr(rel), &isnull);
200  Assert(!isnull);
201  namespaceId = DatumGetObjectId(datum);
202  }
203  else
204  namespaceId = InvalidOid;
205 
206  /* Permission checks ... superusers can always do it */
207  if (!superuser())
208  {
209  /* Fail if object does not have an explicit owner */
210  if (Anum_owner <= 0)
211  ereport(ERROR,
212  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
213  errmsg("must be superuser to rename %s",
214  getObjectDescriptionOids(classId, objectId))));
215 
216  /* Otherwise, must be owner of the existing object */
217  datum = heap_getattr(oldtup, Anum_owner,
218  RelationGetDescr(rel), &isnull);
219  Assert(!isnull);
220  ownerId = DatumGetObjectId(datum);
221 
222  if (!has_privs_of_role(GetUserId(), DatumGetObjectId(ownerId)))
224  old_name);
225 
226  /* User must have CREATE privilege on the namespace */
227  if (OidIsValid(namespaceId))
228  {
229  aclresult = object_aclcheck(NamespaceRelationId, namespaceId, GetUserId(),
230  ACL_CREATE);
231  if (aclresult != ACLCHECK_OK)
232  aclcheck_error(aclresult, OBJECT_SCHEMA,
233  get_namespace_name(namespaceId));
234  }
235 
236  if (classId == SubscriptionRelationId)
237  {
239 
240  /* must have CREATE privilege on database */
241  aclresult = object_aclcheck(DatabaseRelationId, MyDatabaseId,
242  GetUserId(), ACL_CREATE);
243  if (aclresult != ACLCHECK_OK)
244  aclcheck_error(aclresult, OBJECT_DATABASE,
246 
247  /*
248  * Don't allow non-superuser modification of a subscription with
249  * password_required=false.
250  */
251  form = (Form_pg_subscription) GETSTRUCT(oldtup);
252  if (!form->subpasswordrequired && !superuser())
253  ereport(ERROR,
254  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
255  errmsg("password_required=false is superuser-only"),
256  errhint("Subscriptions with the password_required option set to false may only be created or modified by the superuser.")));
257  }
258  }
259 
260  /*
261  * Check for duplicate name (more friendly than unique-index failure).
262  * Since this is just a friendliness check, we can just skip it in cases
263  * where there isn't suitable support.
264  */
265  if (classId == ProcedureRelationId)
266  {
267  Form_pg_proc proc = (Form_pg_proc) GETSTRUCT(oldtup);
268 
269  IsThereFunctionInNamespace(new_name, proc->pronargs,
270  &proc->proargtypes, proc->pronamespace);
271  }
272  else if (classId == CollationRelationId)
273  {
275 
276  IsThereCollationInNamespace(new_name, coll->collnamespace);
277  }
278  else if (classId == OperatorClassRelationId)
279  {
280  Form_pg_opclass opc = (Form_pg_opclass) GETSTRUCT(oldtup);
281 
282  IsThereOpClassInNamespace(new_name, opc->opcmethod,
283  opc->opcnamespace);
284  }
285  else if (classId == OperatorFamilyRelationId)
286  {
288 
289  IsThereOpFamilyInNamespace(new_name, opf->opfmethod,
290  opf->opfnamespace);
291  }
292  else if (classId == SubscriptionRelationId)
293  {
294  if (SearchSysCacheExists2(SUBSCRIPTIONNAME,
296  CStringGetDatum(new_name)))
297  report_name_conflict(classId, new_name);
298 
299  /* Also enforce regression testing naming rules, if enabled */
300 #ifdef ENFORCE_REGRESSION_TEST_NAME_RESTRICTIONS
301  if (strncmp(new_name, "regress_", 8) != 0)
302  elog(WARNING, "subscriptions created by regression test cases should have names starting with \"regress_\"");
303 #endif
304 
305  /* Wake up related replication workers to handle this change quickly */
307  }
308  else if (nameCacheId >= 0)
309  {
310  if (OidIsValid(namespaceId))
311  {
312  if (SearchSysCacheExists2(nameCacheId,
313  CStringGetDatum(new_name),
314  ObjectIdGetDatum(namespaceId)))
315  report_namespace_conflict(classId, new_name, namespaceId);
316  }
317  else
318  {
319  if (SearchSysCacheExists1(nameCacheId,
320  CStringGetDatum(new_name)))
321  report_name_conflict(classId, new_name);
322  }
323  }
324 
325  /* Build modified tuple */
327  nulls = palloc0(RelationGetNumberOfAttributes(rel) * sizeof(bool));
328  replaces = palloc0(RelationGetNumberOfAttributes(rel) * sizeof(bool));
329  namestrcpy(&nameattrdata, new_name);
330  values[Anum_name - 1] = NameGetDatum(&nameattrdata);
331  replaces[Anum_name - 1] = true;
332  newtup = heap_modify_tuple(oldtup, RelationGetDescr(rel),
333  values, nulls, replaces);
334 
335  /* Perform actual update */
336  CatalogTupleUpdate(rel, &oldtup->t_self, newtup);
337 
338  InvokeObjectPostAlterHook(classId, objectId, 0);
339 
340  /* Release memory */
341  pfree(values);
342  pfree(nulls);
343  pfree(replaces);
344  heap_freetuple(newtup);
345 
346  ReleaseSysCache(oldtup);
347 }
348 
349 /*
350  * Executes an ALTER OBJECT / RENAME TO statement. Based on the object
351  * type, the function appropriate to that type is executed.
352  *
353  * Return value is the address of the renamed object.
354  */
357 {
358  switch (stmt->renameType)
359  {
362  return RenameConstraint(stmt);
363 
364  case OBJECT_DATABASE:
365  return RenameDatabase(stmt->subname, stmt->newname);
366 
367  case OBJECT_ROLE:
368  return RenameRole(stmt->subname, stmt->newname);
369 
370  case OBJECT_SCHEMA:
371  return RenameSchema(stmt->subname, stmt->newname);
372 
373  case OBJECT_TABLESPACE:
374  return RenameTableSpace(stmt->subname, stmt->newname);
375 
376  case OBJECT_TABLE:
377  case OBJECT_SEQUENCE:
378  case OBJECT_VIEW:
379  case OBJECT_MATVIEW:
380  case OBJECT_INDEX:
382  return RenameRelation(stmt);
383 
384  case OBJECT_COLUMN:
385  case OBJECT_ATTRIBUTE:
386  return renameatt(stmt);
387 
388  case OBJECT_RULE:
389  return RenameRewriteRule(stmt->relation, stmt->subname,
390  stmt->newname);
391 
392  case OBJECT_TRIGGER:
393  return renametrig(stmt);
394 
395  case OBJECT_POLICY:
396  return rename_policy(stmt);
397 
398  case OBJECT_DOMAIN:
399  case OBJECT_TYPE:
400  return RenameType(stmt);
401 
402  case OBJECT_AGGREGATE:
403  case OBJECT_COLLATION:
404  case OBJECT_CONVERSION:
406  case OBJECT_FDW:
408  case OBJECT_FUNCTION:
409  case OBJECT_OPCLASS:
410  case OBJECT_OPFAMILY:
411  case OBJECT_LANGUAGE:
412  case OBJECT_PROCEDURE:
413  case OBJECT_ROUTINE:
416  case OBJECT_TSDICTIONARY:
417  case OBJECT_TSPARSER:
418  case OBJECT_TSTEMPLATE:
419  case OBJECT_PUBLICATION:
420  case OBJECT_SUBSCRIPTION:
421  {
422  ObjectAddress address;
423  Relation catalog;
424 
425  address = get_object_address(stmt->renameType,
426  stmt->object,
427  NULL,
428  AccessExclusiveLock, false);
429 
430  catalog = table_open(address.classId, RowExclusiveLock);
432  address.objectId,
433  stmt->newname);
434  table_close(catalog, RowExclusiveLock);
435 
436  return address;
437  }
438 
439  default:
440  elog(ERROR, "unrecognized rename stmt type: %d",
441  (int) stmt->renameType);
442  return InvalidObjectAddress; /* keep compiler happy */
443  }
444 }
445 
446 /*
447  * Executes an ALTER OBJECT / [NO] DEPENDS ON EXTENSION statement.
448  *
449  * Return value is the address of the altered object. refAddress is an output
450  * argument which, if not null, receives the address of the object that the
451  * altered object now depends on.
452  */
455 {
456  ObjectAddress address;
457  ObjectAddress refAddr;
458  Relation rel;
459 
460  address =
461  get_object_address_rv(stmt->objectType, stmt->relation, (List *) stmt->object,
462  &rel, AccessExclusiveLock, false);
463 
464  /*
465  * Verify that the user is entitled to run the command.
466  *
467  * We don't check any privileges on the extension, because that's not
468  * needed. The object owner is stipulating, by running this command, that
469  * the extension owner can drop the object whenever they feel like it,
470  * which is not considered a problem.
471  */
473  stmt->objectType, address, stmt->object, rel);
474 
475  /*
476  * If a relation was involved, it would have been opened and locked. We
477  * don't need the relation here, but we'll retain the lock until commit.
478  */
479  if (rel)
480  table_close(rel, NoLock);
481 
482  refAddr = get_object_address(OBJECT_EXTENSION, (Node *) stmt->extname,
483  NULL, AccessExclusiveLock, false);
484  if (refAddress)
485  *refAddress = refAddr;
486 
487  if (stmt->remove)
488  {
491  refAddr.classId, refAddr.objectId);
492  }
493  else
494  {
495  List *currexts;
496 
497  /* Avoid duplicates */
498  currexts = getAutoExtensionsOfObject(address.classId,
499  address.objectId);
500  if (!list_member_oid(currexts, refAddr.objectId))
501  recordDependencyOn(&address, &refAddr, DEPENDENCY_AUTO_EXTENSION);
502  }
503 
504  return address;
505 }
506 
507 /*
508  * Executes an ALTER OBJECT / SET SCHEMA statement. Based on the object
509  * type, the function appropriate to that type is executed.
510  *
511  * Return value is that of the altered object.
512  *
513  * oldSchemaAddr is an output argument which, if not NULL, is set to the object
514  * address of the original schema.
515  */
518  ObjectAddress *oldSchemaAddr)
519 {
520  ObjectAddress address;
521  Oid oldNspOid;
522 
523  switch (stmt->objectType)
524  {
525  case OBJECT_EXTENSION:
526  address = AlterExtensionNamespace(strVal(stmt->object), stmt->newschema,
527  oldSchemaAddr ? &oldNspOid : NULL);
528  break;
529 
531  case OBJECT_SEQUENCE:
532  case OBJECT_TABLE:
533  case OBJECT_VIEW:
534  case OBJECT_MATVIEW:
535  address = AlterTableNamespace(stmt,
536  oldSchemaAddr ? &oldNspOid : NULL);
537  break;
538 
539  case OBJECT_DOMAIN:
540  case OBJECT_TYPE:
541  address = AlterTypeNamespace(castNode(List, stmt->object), stmt->newschema,
542  stmt->objectType,
543  oldSchemaAddr ? &oldNspOid : NULL);
544  break;
545 
546  /* generic code path */
547  case OBJECT_AGGREGATE:
548  case OBJECT_COLLATION:
549  case OBJECT_CONVERSION:
550  case OBJECT_FUNCTION:
551  case OBJECT_OPERATOR:
552  case OBJECT_OPCLASS:
553  case OBJECT_OPFAMILY:
554  case OBJECT_PROCEDURE:
555  case OBJECT_ROUTINE:
558  case OBJECT_TSDICTIONARY:
559  case OBJECT_TSPARSER:
560  case OBJECT_TSTEMPLATE:
561  {
562  Relation catalog;
563  Oid classId;
564  Oid nspOid;
565 
566  address = get_object_address(stmt->objectType,
567  stmt->object,
568  NULL,
570  false);
571  classId = address.classId;
572  catalog = table_open(classId, RowExclusiveLock);
573  nspOid = LookupCreationNamespace(stmt->newschema);
574 
575  oldNspOid = AlterObjectNamespace_internal(catalog, address.objectId,
576  nspOid);
577  table_close(catalog, RowExclusiveLock);
578  }
579  break;
580 
581  default:
582  elog(ERROR, "unrecognized AlterObjectSchemaStmt type: %d",
583  (int) stmt->objectType);
584  return InvalidObjectAddress; /* keep compiler happy */
585  }
586 
587  if (oldSchemaAddr)
588  ObjectAddressSet(*oldSchemaAddr, NamespaceRelationId, oldNspOid);
589 
590  return address;
591 }
592 
593 /*
594  * Change an object's namespace given its classOid and object Oid.
595  *
596  * Objects that don't have a namespace should be ignored, as should
597  * dependent types such as array types.
598  *
599  * This function is currently used only by ALTER EXTENSION SET SCHEMA,
600  * so it only needs to cover object kinds that can be members of an
601  * extension, and it can silently ignore dependent types --- we assume
602  * those will be moved when their parent object is moved.
603  *
604  * Returns the OID of the object's previous namespace, or InvalidOid if
605  * object doesn't have a schema or was ignored due to being a dependent type.
606  */
607 Oid
608 AlterObjectNamespace_oid(Oid classId, Oid objid, Oid nspOid,
609  ObjectAddresses *objsMoved)
610 {
611  Oid oldNspOid = InvalidOid;
612 
613  switch (classId)
614  {
615  case RelationRelationId:
616  {
617  Relation rel;
618 
619  rel = relation_open(objid, AccessExclusiveLock);
620  oldNspOid = RelationGetNamespace(rel);
621 
622  AlterTableNamespaceInternal(rel, oldNspOid, nspOid, objsMoved);
623 
624  relation_close(rel, NoLock);
625  break;
626  }
627 
628  case TypeRelationId:
629  oldNspOid = AlterTypeNamespace_oid(objid, nspOid, true, objsMoved);
630  break;
631 
632  case ProcedureRelationId:
633  case CollationRelationId:
634  case ConversionRelationId:
635  case OperatorRelationId:
636  case OperatorClassRelationId:
637  case OperatorFamilyRelationId:
638  case StatisticExtRelationId:
639  case TSParserRelationId:
640  case TSDictionaryRelationId:
641  case TSTemplateRelationId:
642  case TSConfigRelationId:
643  {
644  Relation catalog;
645 
646  catalog = table_open(classId, RowExclusiveLock);
647 
648  oldNspOid = AlterObjectNamespace_internal(catalog, objid,
649  nspOid);
650 
651  table_close(catalog, RowExclusiveLock);
652  }
653  break;
654 
655  default:
656  /* ignore object types that don't have schema-qualified names */
658  }
659 
660  return oldNspOid;
661 }
662 
663 /*
664  * Generic function to change the namespace of a given object, for simple
665  * cases (won't work for tables, nor other cases where we need to do more
666  * than change the namespace column of a single catalog entry).
667  *
668  * rel: catalog relation containing object (RowExclusiveLock'd by caller)
669  * objid: OID of object to change the namespace of
670  * nspOid: OID of new namespace
671  *
672  * Returns the OID of the object's previous namespace.
673  */
674 static Oid
676 {
677  Oid classId = RelationGetRelid(rel);
678  int oidCacheId = get_object_catcache_oid(classId);
679  int nameCacheId = get_object_catcache_name(classId);
680  AttrNumber Anum_name = get_object_attnum_name(classId);
681  AttrNumber Anum_namespace = get_object_attnum_namespace(classId);
682  AttrNumber Anum_owner = get_object_attnum_owner(classId);
683  Oid oldNspOid;
684  Datum name,
685  namespace;
686  bool isnull;
687  HeapTuple tup,
688  newtup;
689  Datum *values;
690  bool *nulls;
691  bool *replaces;
692 
693  tup = SearchSysCacheCopy1(oidCacheId, ObjectIdGetDatum(objid));
694  if (!HeapTupleIsValid(tup)) /* should not happen */
695  elog(ERROR, "cache lookup failed for object %u of catalog \"%s\"",
696  objid, RelationGetRelationName(rel));
697 
698  name = heap_getattr(tup, Anum_name, RelationGetDescr(rel), &isnull);
699  Assert(!isnull);
700  namespace = heap_getattr(tup, Anum_namespace, RelationGetDescr(rel),
701  &isnull);
702  Assert(!isnull);
703  oldNspOid = DatumGetObjectId(namespace);
704 
705  /*
706  * If the object is already in the correct namespace, we don't need to do
707  * anything except fire the object access hook.
708  */
709  if (oldNspOid == nspOid)
710  {
711  InvokeObjectPostAlterHook(classId, objid, 0);
712  return oldNspOid;
713  }
714 
715  /* Check basic namespace related issues */
716  CheckSetNamespace(oldNspOid, nspOid);
717 
718  /* Permission checks ... superusers can always do it */
719  if (!superuser())
720  {
721  Datum owner;
722  Oid ownerId;
723  AclResult aclresult;
724 
725  /* Fail if object does not have an explicit owner */
726  if (Anum_owner <= 0)
727  ereport(ERROR,
728  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
729  errmsg("must be superuser to set schema of %s",
730  getObjectDescriptionOids(classId, objid))));
731 
732  /* Otherwise, must be owner of the existing object */
733  owner = heap_getattr(tup, Anum_owner, RelationGetDescr(rel), &isnull);
734  Assert(!isnull);
735  ownerId = DatumGetObjectId(owner);
736 
737  if (!has_privs_of_role(GetUserId(), ownerId))
739  NameStr(*(DatumGetName(name))));
740 
741  /* User must have CREATE privilege on new namespace */
742  aclresult = object_aclcheck(NamespaceRelationId, nspOid, GetUserId(), ACL_CREATE);
743  if (aclresult != ACLCHECK_OK)
744  aclcheck_error(aclresult, OBJECT_SCHEMA,
745  get_namespace_name(nspOid));
746  }
747 
748  /*
749  * Check for duplicate name (more friendly than unique-index failure).
750  * Since this is just a friendliness check, we can just skip it in cases
751  * where there isn't suitable support.
752  */
753  if (classId == ProcedureRelationId)
754  {
755  Form_pg_proc proc = (Form_pg_proc) GETSTRUCT(tup);
756 
757  IsThereFunctionInNamespace(NameStr(proc->proname), proc->pronargs,
758  &proc->proargtypes, nspOid);
759  }
760  else if (classId == CollationRelationId)
761  {
763 
764  IsThereCollationInNamespace(NameStr(coll->collname), nspOid);
765  }
766  else if (classId == OperatorClassRelationId)
767  {
769 
770  IsThereOpClassInNamespace(NameStr(opc->opcname),
771  opc->opcmethod, nspOid);
772  }
773  else if (classId == OperatorFamilyRelationId)
774  {
776 
777  IsThereOpFamilyInNamespace(NameStr(opf->opfname),
778  opf->opfmethod, nspOid);
779  }
780  else if (nameCacheId >= 0 &&
781  SearchSysCacheExists2(nameCacheId, name,
782  ObjectIdGetDatum(nspOid)))
785  nspOid);
786 
787  /* Build modified tuple */
789  nulls = palloc0(RelationGetNumberOfAttributes(rel) * sizeof(bool));
790  replaces = palloc0(RelationGetNumberOfAttributes(rel) * sizeof(bool));
791  values[Anum_namespace - 1] = ObjectIdGetDatum(nspOid);
792  replaces[Anum_namespace - 1] = true;
793  newtup = heap_modify_tuple(tup, RelationGetDescr(rel),
794  values, nulls, replaces);
795 
796  /* Perform actual update */
797  CatalogTupleUpdate(rel, &tup->t_self, newtup);
798 
799  /* Release memory */
800  pfree(values);
801  pfree(nulls);
802  pfree(replaces);
803 
804  /* update dependency to point to the new schema */
805  if (changeDependencyFor(classId, objid,
806  NamespaceRelationId, oldNspOid, nspOid) != 1)
807  elog(ERROR, "could not change schema dependency for object %u",
808  objid);
809 
810  InvokeObjectPostAlterHook(classId, objid, 0);
811 
812  return oldNspOid;
813 }
814 
815 /*
816  * Executes an ALTER OBJECT / OWNER TO statement. Based on the object
817  * type, the function appropriate to that type is executed.
818  */
821 {
822  Oid newowner = get_rolespec_oid(stmt->newowner, false);
823 
824  switch (stmt->objectType)
825  {
826  case OBJECT_DATABASE:
827  return AlterDatabaseOwner(strVal(stmt->object), newowner);
828 
829  case OBJECT_SCHEMA:
830  return AlterSchemaOwner(strVal(stmt->object), newowner);
831 
832  case OBJECT_TYPE:
833  case OBJECT_DOMAIN: /* same as TYPE */
834  return AlterTypeOwner(castNode(List, stmt->object), newowner, stmt->objectType);
835  break;
836 
837  case OBJECT_FDW:
838  return AlterForeignDataWrapperOwner(strVal(stmt->object),
839  newowner);
840 
842  return AlterForeignServerOwner(strVal(stmt->object),
843  newowner);
844 
846  return AlterEventTriggerOwner(strVal(stmt->object),
847  newowner);
848 
849  case OBJECT_PUBLICATION:
850  return AlterPublicationOwner(strVal(stmt->object),
851  newowner);
852 
853  case OBJECT_SUBSCRIPTION:
854  return AlterSubscriptionOwner(strVal(stmt->object),
855  newowner);
856 
857  /* Generic cases */
858  case OBJECT_AGGREGATE:
859  case OBJECT_COLLATION:
860  case OBJECT_CONVERSION:
861  case OBJECT_FUNCTION:
862  case OBJECT_LANGUAGE:
863  case OBJECT_LARGEOBJECT:
864  case OBJECT_OPERATOR:
865  case OBJECT_OPCLASS:
866  case OBJECT_OPFAMILY:
867  case OBJECT_PROCEDURE:
868  case OBJECT_ROUTINE:
870  case OBJECT_TABLESPACE:
871  case OBJECT_TSDICTIONARY:
873  {
874  ObjectAddress address;
875 
876  address = get_object_address(stmt->objectType,
877  stmt->object,
878  NULL,
880  false);
881 
882  AlterObjectOwner_internal(address.classId, address.objectId,
883  newowner);
884 
885  return address;
886  }
887  break;
888 
889  default:
890  elog(ERROR, "unrecognized AlterOwnerStmt type: %d",
891  (int) stmt->objectType);
892  return InvalidObjectAddress; /* keep compiler happy */
893  }
894 }
895 
896 /*
897  * Generic function to change the ownership of a given object, for simple
898  * cases (won't work for tables, nor other cases where we need to do more than
899  * change the ownership column of a single catalog entry).
900  *
901  * classId: OID of catalog containing object
902  * objectId: OID of object to change the ownership of
903  * new_ownerId: OID of new object owner
904  *
905  * This will work on large objects, but we have to beware of the fact that
906  * classId isn't the OID of the catalog to modify in that case.
907  */
908 void
909 AlterObjectOwner_internal(Oid classId, Oid objectId, Oid new_ownerId)
910 {
911  /* For large objects, the catalog to modify is pg_largeobject_metadata */
912  Oid catalogId = (classId == LargeObjectRelationId) ? LargeObjectMetadataRelationId : classId;
913  AttrNumber Anum_oid = get_object_attnum_oid(catalogId);
914  AttrNumber Anum_owner = get_object_attnum_owner(catalogId);
915  AttrNumber Anum_namespace = get_object_attnum_namespace(catalogId);
916  AttrNumber Anum_acl = get_object_attnum_acl(catalogId);
917  AttrNumber Anum_name = get_object_attnum_name(catalogId);
918  Relation rel;
919  HeapTuple oldtup;
920  Datum datum;
921  bool isnull;
922  Oid old_ownerId;
923  Oid namespaceId = InvalidOid;
924 
925  rel = table_open(catalogId, RowExclusiveLock);
926 
927  oldtup = get_catalog_object_by_oid(rel, Anum_oid, objectId);
928  if (oldtup == NULL)
929  elog(ERROR, "cache lookup failed for object %u of catalog \"%s\"",
930  objectId, RelationGetRelationName(rel));
931 
932  datum = heap_getattr(oldtup, Anum_owner,
933  RelationGetDescr(rel), &isnull);
934  Assert(!isnull);
935  old_ownerId = DatumGetObjectId(datum);
936 
937  if (Anum_namespace != InvalidAttrNumber)
938  {
939  datum = heap_getattr(oldtup, Anum_namespace,
940  RelationGetDescr(rel), &isnull);
941  Assert(!isnull);
942  namespaceId = DatumGetObjectId(datum);
943  }
944 
945  if (old_ownerId != new_ownerId)
946  {
947  AttrNumber nattrs;
948  HeapTuple newtup;
949  Datum *values;
950  bool *nulls;
951  bool *replaces;
952 
953  /* Superusers can bypass permission checks */
954  if (!superuser())
955  {
956  /* must be owner */
957  if (!has_privs_of_role(GetUserId(), old_ownerId))
958  {
959  char *objname;
960  char namebuf[NAMEDATALEN];
961 
962  if (Anum_name != InvalidAttrNumber)
963  {
964  datum = heap_getattr(oldtup, Anum_name,
965  RelationGetDescr(rel), &isnull);
966  Assert(!isnull);
967  objname = NameStr(*DatumGetName(datum));
968  }
969  else
970  {
971  snprintf(namebuf, sizeof(namebuf), "%u", objectId);
972  objname = namebuf;
973  }
975  get_object_type(catalogId, objectId),
976  objname);
977  }
978  /* Must be able to become new owner */
979  check_can_set_role(GetUserId(), new_ownerId);
980 
981  /* New owner must have CREATE privilege on namespace */
982  if (OidIsValid(namespaceId))
983  {
984  AclResult aclresult;
985 
986  aclresult = object_aclcheck(NamespaceRelationId, namespaceId, new_ownerId,
987  ACL_CREATE);
988  if (aclresult != ACLCHECK_OK)
989  aclcheck_error(aclresult, OBJECT_SCHEMA,
990  get_namespace_name(namespaceId));
991  }
992  }
993 
994  /* Build a modified tuple */
995  nattrs = RelationGetNumberOfAttributes(rel);
996  values = palloc0(nattrs * sizeof(Datum));
997  nulls = palloc0(nattrs * sizeof(bool));
998  replaces = palloc0(nattrs * sizeof(bool));
999  values[Anum_owner - 1] = ObjectIdGetDatum(new_ownerId);
1000  replaces[Anum_owner - 1] = true;
1001 
1002  /*
1003  * Determine the modified ACL for the new owner. This is only
1004  * necessary when the ACL is non-null.
1005  */
1006  if (Anum_acl != InvalidAttrNumber)
1007  {
1008  datum = heap_getattr(oldtup,
1009  Anum_acl, RelationGetDescr(rel), &isnull);
1010  if (!isnull)
1011  {
1012  Acl *newAcl;
1013 
1014  newAcl = aclnewowner(DatumGetAclP(datum),
1015  old_ownerId, new_ownerId);
1016  values[Anum_acl - 1] = PointerGetDatum(newAcl);
1017  replaces[Anum_acl - 1] = true;
1018  }
1019  }
1020 
1021  newtup = heap_modify_tuple(oldtup, RelationGetDescr(rel),
1022  values, nulls, replaces);
1023 
1024  /* Perform actual update */
1025  CatalogTupleUpdate(rel, &newtup->t_self, newtup);
1026 
1027  /* Update owner dependency reference */
1028  changeDependencyOnOwner(classId, objectId, new_ownerId);
1029 
1030  /* Release memory */
1031  pfree(values);
1032  pfree(nulls);
1033  pfree(replaces);
1034  }
1035 
1036  /* Note the post-alter hook gets classId not catalogId */
1037  InvokeObjectPostAlterHook(classId, objectId, 0);
1038 
1040 }
bool has_privs_of_role(Oid member, Oid role)
Definition: acl.c:5268
Acl * aclnewowner(const Acl *old_acl, Oid oldOwnerId, Oid newOwnerId)
Definition: acl.c:1103
void check_can_set_role(Oid member, Oid role)
Definition: acl.c:5325
Oid get_rolespec_oid(const RoleSpec *role, bool missing_ok)
Definition: acl.c:5588
AclResult
Definition: acl.h:182
@ ACLCHECK_OK
Definition: acl.h:183
@ ACLCHECK_NOT_OWNER
Definition: acl.h:185
#define DatumGetAclP(X)
Definition: acl.h:120
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
Definition: aclchk.c:2622
AclResult object_aclcheck(Oid classid, Oid objectid, Oid roleid, AclMode mode)
Definition: aclchk.c:3810
static Oid AlterObjectNamespace_internal(Relation rel, Oid objid, Oid nspOid)
Definition: alter.c:675
static void report_name_conflict(Oid classId, const char *name)
Definition: alter.c:75
ObjectAddress ExecAlterOwnerStmt(AlterOwnerStmt *stmt)
Definition: alter.c:820
static void report_namespace_conflict(Oid classId, const char *name, Oid nspOid)
Definition: alter.c:110
ObjectAddress ExecAlterObjectDependsStmt(AlterObjectDependsStmt *stmt, ObjectAddress *refAddress)
Definition: alter.c:454
static void AlterObjectRename_internal(Relation rel, Oid objectId, const char *new_name)
Definition: alter.c:164
ObjectAddress ExecRenameStmt(RenameStmt *stmt)
Definition: alter.c:356
void AlterObjectOwner_internal(Oid classId, Oid objectId, Oid new_ownerId)
Definition: alter.c:909
ObjectAddress ExecAlterObjectSchemaStmt(AlterObjectSchemaStmt *stmt, ObjectAddress *oldSchemaAddr)
Definition: alter.c:517
Oid AlterObjectNamespace_oid(Oid classId, Oid objid, Oid nspOid, ObjectAddresses *objsMoved)
Definition: alter.c:608
int16 AttrNumber
Definition: attnum.h:21
#define InvalidAttrNumber
Definition: attnum.h:23
ObjectAddress RenameTableSpace(const char *oldname, const char *newname)
Definition: tablespace.c:930
void LogicalRepWorkersWakeupAtCommit(Oid subid)
Definition: worker.c:5099
static Datum values[MAXATTR]
Definition: bootstrap.c:151
#define NameStr(name)
Definition: c.h:700
#define gettext_noop(x)
Definition: c.h:1150
#define Assert(condition)
Definition: c.h:812
#define OidIsValid(objectId)
Definition: c.h:729
void IsThereCollationInNamespace(const char *collname, Oid nspOid)
ObjectAddress RenameDatabase(const char *oldname, const char *newname)
Definition: dbcommands.c:1876
char * get_database_name(Oid dbid)
Definition: dbcommands.c:3187
ObjectAddress AlterDatabaseOwner(const char *dbname, Oid newOwnerId)
Definition: dbcommands.c:2637
@ DEPENDENCY_AUTO_EXTENSION
Definition: dependency.h:39
int errhint(const char *fmt,...)
Definition: elog.c:1317
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define WARNING
Definition: elog.h:36
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:225
#define ereport(elevel,...)
Definition: elog.h:149
ObjectAddress AlterEventTriggerOwner(const char *name, Oid newOwnerId)
ObjectAddress AlterExtensionNamespace(const char *extensionName, const char *newschema, Oid *oldschema)
Definition: extension.c:2883
ObjectAddress AlterForeignServerOwner(const char *name, Oid newOwnerId)
Definition: foreigncmds.c:415
ObjectAddress AlterForeignDataWrapperOwner(const char *name, Oid newOwnerId)
Definition: foreigncmds.c:275
void IsThereFunctionInNamespace(const char *proname, int pronargs, oidvector *proargtypes, Oid nspOid)
Oid MyDatabaseId
Definition: globals.c:93
HeapTuple heap_modify_tuple(HeapTuple tuple, TupleDesc tupleDesc, const Datum *replValues, const bool *replIsnull, const bool *doReplace)
Definition: heaptuple.c:1209
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1434
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
static Datum heap_getattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
Definition: htup_details.h:792
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
#define stmt
Definition: indent_codes.h:59
void CatalogTupleUpdate(Relation heapRel, ItemPointer otid, HeapTuple tup)
Definition: indexing.c:313
bool list_member_oid(const List *list, Oid datum)
Definition: list.c:722
#define NoLock
Definition: lockdefs.h:34
#define AccessExclusiveLock
Definition: lockdefs.h:43
#define RowExclusiveLock
Definition: lockdefs.h:38
char * get_namespace_name(Oid nspid)
Definition: lsyscache.c:3366
void pfree(void *pointer)
Definition: mcxt.c:1521
void * palloc0(Size size)
Definition: mcxt.c:1347
Oid GetUserId(void)
Definition: miscinit.c:524
void namestrcpy(Name name, const char *str)
Definition: name.c:233
Oid LookupCreationNamespace(const char *nspname)
Definition: namespace.c:3428
void CheckSetNamespace(Oid oldNspOid, Oid nspOid)
Definition: namespace.c:3459
#define castNode(_type_, nodeptr)
Definition: nodes.h:176
#define InvokeObjectPostAlterHook(classId, objectId, subId)
Definition: objectaccess.h:197
int get_object_catcache_name(Oid class_id)
ObjectAddress get_object_address_rv(ObjectType objtype, RangeVar *rel, List *object, Relation *relp, LOCKMODE lockmode, bool missing_ok)
AttrNumber get_object_attnum_owner(Oid class_id)
HeapTuple get_catalog_object_by_oid(Relation catalog, AttrNumber oidcol, Oid objectId)
AttrNumber get_object_attnum_oid(Oid class_id)
char * getObjectDescriptionOids(Oid classid, Oid objid)
AttrNumber get_object_attnum_namespace(Oid class_id)
void check_object_ownership(Oid roleid, ObjectType objtype, ObjectAddress address, Node *object, Relation relation)
AttrNumber get_object_attnum_name(Oid class_id)
AttrNumber get_object_attnum_acl(Oid class_id)
int get_object_catcache_oid(Oid class_id)
const ObjectAddress InvalidObjectAddress
ObjectType get_object_type(Oid class_id, Oid object_id)
ObjectAddress get_object_address(ObjectType objtype, Node *object, Relation *relp, LOCKMODE lockmode, bool missing_ok)
#define ObjectAddressSet(addr, class_id, object_id)
Definition: objectaddress.h:40
void IsThereOpFamilyInNamespace(const char *opfname, Oid opfmethod, Oid opfnamespace)
Definition: opclasscmds.c:1730
void IsThereOpClassInNamespace(const char *opcname, Oid opcmethod, Oid opcnamespace)
Definition: opclasscmds.c:1707
@ OBJECT_EVENT_TRIGGER
Definition: parsenodes.h:2282
@ OBJECT_FDW
Definition: parsenodes.h:2284
@ OBJECT_TSPARSER
Definition: parsenodes.h:2315
@ OBJECT_COLLATION
Definition: parsenodes.h:2275
@ OBJECT_OPCLASS
Definition: parsenodes.h:2292
@ OBJECT_AGGREGATE
Definition: parsenodes.h:2269
@ OBJECT_MATVIEW
Definition: parsenodes.h:2291
@ OBJECT_SCHEMA
Definition: parsenodes.h:2304
@ OBJECT_POLICY
Definition: parsenodes.h:2296
@ OBJECT_OPERATOR
Definition: parsenodes.h:2293
@ OBJECT_FOREIGN_TABLE
Definition: parsenodes.h:2286
@ OBJECT_TSCONFIGURATION
Definition: parsenodes.h:2313
@ OBJECT_OPFAMILY
Definition: parsenodes.h:2294
@ OBJECT_DOMAIN
Definition: parsenodes.h:2280
@ OBJECT_COLUMN
Definition: parsenodes.h:2274
@ OBJECT_TABLESPACE
Definition: parsenodes.h:2310
@ OBJECT_ROLE
Definition: parsenodes.h:2301
@ OBJECT_ROUTINE
Definition: parsenodes.h:2302
@ OBJECT_LARGEOBJECT
Definition: parsenodes.h:2290
@ OBJECT_PROCEDURE
Definition: parsenodes.h:2297
@ OBJECT_EXTENSION
Definition: parsenodes.h:2283
@ OBJECT_INDEX
Definition: parsenodes.h:2288
@ OBJECT_DATABASE
Definition: parsenodes.h:2277
@ OBJECT_SEQUENCE
Definition: parsenodes.h:2305
@ OBJECT_TSTEMPLATE
Definition: parsenodes.h:2316
@ OBJECT_LANGUAGE
Definition: parsenodes.h:2289
@ OBJECT_FOREIGN_SERVER
Definition: parsenodes.h:2285
@ OBJECT_TSDICTIONARY
Definition: parsenodes.h:2314
@ OBJECT_ATTRIBUTE
Definition: parsenodes.h:2272
@ OBJECT_PUBLICATION
Definition: parsenodes.h:2298
@ OBJECT_RULE
Definition: parsenodes.h:2303
@ OBJECT_CONVERSION
Definition: parsenodes.h:2276
@ OBJECT_TABLE
Definition: parsenodes.h:2309
@ OBJECT_VIEW
Definition: parsenodes.h:2319
@ OBJECT_TYPE
Definition: parsenodes.h:2317
@ OBJECT_FUNCTION
Definition: parsenodes.h:2287
@ OBJECT_TABCONSTRAINT
Definition: parsenodes.h:2308
@ OBJECT_DOMCONSTRAINT
Definition: parsenodes.h:2281
@ OBJECT_SUBSCRIPTION
Definition: parsenodes.h:2306
@ OBJECT_STATISTIC_EXT
Definition: parsenodes.h:2307
@ OBJECT_TRIGGER
Definition: parsenodes.h:2312
#define ACL_CREATE
Definition: parsenodes.h:85
FormData_pg_collation * Form_pg_collation
Definition: pg_collation.h:58
#define NAMEDATALEN
void recordDependencyOn(const ObjectAddress *depender, const ObjectAddress *referenced, DependencyType behavior)
Definition: pg_depend.c:45
long changeDependencyFor(Oid classId, Oid objectId, Oid refClassId, Oid oldRefObjectId, Oid newRefObjectId)
Definition: pg_depend.c:457
List * getAutoExtensionsOfObject(Oid classId, Oid objectId)
Definition: pg_depend.c:778
long deleteDependencyRecordsForSpecific(Oid classId, Oid objectId, char deptype, Oid refclassId, Oid refobjectId)
Definition: pg_depend.c:398
FormData_pg_opclass * Form_pg_opclass
Definition: pg_opclass.h:83
FormData_pg_opfamily * Form_pg_opfamily
Definition: pg_opfamily.h:51
FormData_pg_proc * Form_pg_proc
Definition: pg_proc.h:136
void changeDependencyOnOwner(Oid classId, Oid objectId, Oid newOwnerId)
Definition: pg_shdepend.c:316
FormData_pg_subscription * Form_pg_subscription
ObjectAddress rename_policy(RenameStmt *stmt)
Definition: policy.c:1096
#define snprintf
Definition: port.h:238
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
static Name DatumGetName(Datum X)
Definition: postgres.h:360
uintptr_t Datum
Definition: postgres.h:64
static Oid DatumGetObjectId(Datum X)
Definition: postgres.h:242
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
static Datum NameGetDatum(const NameData *X)
Definition: postgres.h:373
static Datum CStringGetDatum(const char *X)
Definition: postgres.h:350
#define InvalidOid
Definition: postgres_ext.h:36
unsigned int Oid
Definition: postgres_ext.h:31
ObjectAddress AlterPublicationOwner(const char *name, Oid newOwnerId)
#define RelationGetRelid(relation)
Definition: rel.h:505
#define RelationGetDescr(relation)
Definition: rel.h:531
#define RelationGetNumberOfAttributes(relation)
Definition: rel.h:511
#define RelationGetRelationName(relation)
Definition: rel.h:539
#define RelationGetNamespace(relation)
Definition: rel.h:546
ObjectAddress RenameRewriteRule(RangeVar *relation, const char *oldName, const char *newName)
ObjectAddress AlterSchemaOwner(const char *name, Oid newOwnerId)
Definition: schemacmds.c:330
ObjectAddress RenameSchema(const char *oldname, const char *newname)
Definition: schemacmds.c:249
void relation_close(Relation relation, LOCKMODE lockmode)
Definition: relation.c:205
Relation relation_open(Oid relationId, LOCKMODE lockmode)
Definition: relation.c:47
#define ERRCODE_DUPLICATE_OBJECT
Definition: streamutil.c:30
ItemPointerData t_self
Definition: htup.h:65
Definition: pg_list.h:54
Definition: nodes.h:129
Definition: c.h:695
ObjectAddress AlterSubscriptionOwner(const char *name, Oid newOwnerId)
bool superuser(void)
Definition: superuser.c:46
void ReleaseSysCache(HeapTuple tuple)
Definition: syscache.c:269
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Definition: syscache.c:221
#define SearchSysCacheCopy1(cacheId, key1)
Definition: syscache.h:91
#define SearchSysCacheExists2(cacheId, key1, key2)
Definition: syscache.h:102
#define SearchSysCacheExists1(cacheId, key1)
Definition: syscache.h:100
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
ObjectAddress RenameRelation(RenameStmt *stmt)
Definition: tablecmds.c:4119
ObjectAddress renameatt(RenameStmt *stmt)
Definition: tablecmds.c:3922
void AlterTableNamespaceInternal(Relation rel, Oid oldNspOid, Oid nspOid, ObjectAddresses *objsMoved)
Definition: tablecmds.c:17780
ObjectAddress AlterTableNamespace(AlterObjectSchemaStmt *stmt, Oid *oldschema)
Definition: tablecmds.c:17709
ObjectAddress RenameConstraint(RenameStmt *stmt)
Definition: tablecmds.c:4069
ObjectAddress renametrig(RenameStmt *stmt)
Definition: trigger.c:1463
Oid AlterTypeNamespace_oid(Oid typeOid, Oid nspOid, bool ignoreDependent, ObjectAddresses *objsMoved)
Definition: typecmds.c:4114
ObjectAddress AlterTypeOwner(List *names, Oid newOwnerId, ObjectType objecttype)
Definition: typecmds.c:3832
ObjectAddress RenameType(RenameStmt *stmt)
Definition: typecmds.c:3751
ObjectAddress AlterTypeNamespace(List *names, const char *newschema, ObjectType objecttype, Oid *oldschema)
Definition: typecmds.c:4065
ObjectAddress RenameRole(const char *oldname, const char *newname)
Definition: user.c:1334
#define strVal(v)
Definition: value.h:82
const char * name