PostgreSQL Source Code  git master
catalog.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * catalog.c
4  * routines concerned with catalog naming conventions and other
5  * bits of hard-wired knowledge
6  *
7  *
8  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
9  * Portions Copyright (c) 1994, Regents of the University of California
10  *
11  *
12  * IDENTIFICATION
13  * src/backend/catalog/catalog.c
14  *
15  *-------------------------------------------------------------------------
16  */
17 
18 #include "postgres.h"
19 
20 #include <fcntl.h>
21 #include <unistd.h>
22 
23 #include "access/genam.h"
24 #include "access/htup_details.h"
25 #include "access/table.h"
26 #include "access/transam.h"
27 #include "catalog/catalog.h"
28 #include "catalog/namespace.h"
30 #include "catalog/pg_authid.h"
31 #include "catalog/pg_database.h"
33 #include "catalog/pg_largeobject.h"
34 #include "catalog/pg_namespace.h"
37 #include "catalog/pg_shdepend.h"
39 #include "catalog/pg_shseclabel.h"
41 #include "catalog/pg_tablespace.h"
42 #include "catalog/pg_type.h"
43 #include "miscadmin.h"
44 #include "utils/fmgroids.h"
45 #include "utils/fmgrprotos.h"
46 #include "utils/rel.h"
47 #include "utils/snapmgr.h"
48 #include "utils/syscache.h"
49 
50 /*
51  * Parameters to determine when to emit a log message in
52  * GetNewOidWithIndex()
53  */
54 #define GETNEWOID_LOG_THRESHOLD 1000000
55 #define GETNEWOID_LOG_MAX_INTERVAL 128000000
56 
57 /*
58  * IsSystemRelation
59  * True iff the relation is either a system catalog or a toast table.
60  * See IsCatalogRelation for the exact definition of a system catalog.
61  *
62  * We treat toast tables of user relations as "system relations" for
63  * protection purposes, e.g. you can't change their schemas without
64  * special permissions. Therefore, most uses of this function are
65  * checking whether allow_system_table_mods restrictions apply.
66  * For other purposes, consider whether you shouldn't be using
67  * IsCatalogRelation instead.
68  *
69  * This function does not perform any catalog accesses.
70  * Some callers rely on that!
71  */
72 bool
74 {
75  return IsSystemClass(RelationGetRelid(relation), relation->rd_rel);
76 }
77 
78 /*
79  * IsSystemClass
80  * Like the above, but takes a Form_pg_class as argument.
81  * Used when we do not want to open the relation and have to
82  * search pg_class directly.
83  */
84 bool
86 {
87  /* IsCatalogRelationOid is a bit faster, so test that first */
88  return (IsCatalogRelationOid(relid) || IsToastClass(reltuple));
89 }
90 
91 /*
92  * IsCatalogRelation
93  * True iff the relation is a system catalog.
94  *
95  * By a system catalog, we mean one that is created during the bootstrap
96  * phase of initdb. That includes not just the catalogs per se, but
97  * also their indexes, and TOAST tables and indexes if any.
98  *
99  * This function does not perform any catalog accesses.
100  * Some callers rely on that!
101  */
102 bool
104 {
105  return IsCatalogRelationOid(RelationGetRelid(relation));
106 }
107 
108 /*
109  * IsCatalogRelationOid
110  * True iff the relation identified by this OID is a system catalog.
111  *
112  * By a system catalog, we mean one that is created during the bootstrap
113  * phase of initdb. That includes not just the catalogs per se, but
114  * also their indexes, and TOAST tables and indexes if any.
115  *
116  * This function does not perform any catalog accesses.
117  * Some callers rely on that!
118  */
119 bool
121 {
122  /*
123  * We consider a relation to be a system catalog if it has a pinned OID.
124  * This includes all the defined catalogs, their indexes, and their TOAST
125  * tables and indexes.
126  *
127  * This rule excludes the relations in information_schema, which are not
128  * integral to the system and can be treated the same as user relations.
129  * (Since it's valid to drop and recreate information_schema, any rule
130  * that did not act this way would be wrong.)
131  *
132  * This test is reliable since an OID wraparound will skip this range of
133  * OIDs; see GetNewObjectId().
134  */
135  return (relid < (Oid) FirstUnpinnedObjectId);
136 }
137 
138 /*
139  * IsInplaceUpdateRelation
140  * True iff core code performs inplace updates on the relation.
141  */
142 bool
144 {
145  return IsInplaceUpdateOid(RelationGetRelid(relation));
146 }
147 
148 /*
149  * IsInplaceUpdateOid
150  * Like the above, but takes an OID as argument.
151  */
152 bool
154 {
155  return (relid == RelationRelationId ||
156  relid == DatabaseRelationId);
157 }
158 
159 /*
160  * IsToastRelation
161  * True iff relation is a TOAST support relation (or index).
162  *
163  * Does not perform any catalog accesses.
164  */
165 bool
167 {
168  /*
169  * What we actually check is whether the relation belongs to a pg_toast
170  * namespace. This should be equivalent because of restrictions that are
171  * enforced elsewhere against creating user relations in, or moving
172  * relations into/out of, a pg_toast namespace. Notice also that this
173  * will not say "true" for toast tables belonging to other sessions' temp
174  * tables; we expect that other mechanisms will prevent access to those.
175  */
176  return IsToastNamespace(RelationGetNamespace(relation));
177 }
178 
179 /*
180  * IsToastClass
181  * Like the above, but takes a Form_pg_class as argument.
182  * Used when we do not want to open the relation and have to
183  * search pg_class directly.
184  */
185 bool
187 {
188  Oid relnamespace = reltuple->relnamespace;
189 
190  return IsToastNamespace(relnamespace);
191 }
192 
193 /*
194  * IsCatalogNamespace
195  * True iff namespace is pg_catalog.
196  *
197  * Does not perform any catalog accesses.
198  *
199  * NOTE: the reason this isn't a macro is to avoid having to include
200  * catalog/pg_namespace.h in a lot of places.
201  */
202 bool
204 {
205  return namespaceId == PG_CATALOG_NAMESPACE;
206 }
207 
208 /*
209  * IsToastNamespace
210  * True iff namespace is pg_toast or my temporary-toast-table namespace.
211  *
212  * Does not perform any catalog accesses.
213  *
214  * Note: this will return false for temporary-toast-table namespaces belonging
215  * to other backends. Those are treated the same as other backends' regular
216  * temp table namespaces, and access is prevented where appropriate.
217  * If you need to check for those, you may be able to use isAnyTempNamespace,
218  * but beware that that does involve a catalog access.
219  */
220 bool
221 IsToastNamespace(Oid namespaceId)
222 {
223  return (namespaceId == PG_TOAST_NAMESPACE) ||
224  isTempToastNamespace(namespaceId);
225 }
226 
227 
228 /*
229  * IsReservedName
230  * True iff name starts with the pg_ prefix.
231  *
232  * For some classes of objects, the prefix pg_ is reserved for
233  * system objects only. As of 8.0, this was only true for
234  * schema and tablespace names. With 9.6, this is also true
235  * for roles.
236  */
237 bool
238 IsReservedName(const char *name)
239 {
240  /* ugly coding for speed */
241  return (name[0] == 'p' &&
242  name[1] == 'g' &&
243  name[2] == '_');
244 }
245 
246 
247 /*
248  * IsSharedRelation
249  * Given the OID of a relation, determine whether it's supposed to be
250  * shared across an entire database cluster.
251  *
252  * In older releases, this had to be hard-wired so that we could compute the
253  * locktag for a relation and lock it before examining its catalog entry.
254  * Since we now have MVCC catalog access, the race conditions that made that
255  * a hard requirement are gone, so we could look at relaxing this restriction.
256  * However, if we scanned the pg_class entry to find relisshared, and only
257  * then locked the relation, pg_class could get updated in the meantime,
258  * forcing us to scan the relation again, which would definitely be complex
259  * and might have undesirable performance consequences. Fortunately, the set
260  * of shared relations is fairly static, so a hand-maintained list of their
261  * OIDs isn't completely impractical.
262  */
263 bool
265 {
266  /* These are the shared catalogs (look for BKI_SHARED_RELATION) */
267  if (relationId == AuthIdRelationId ||
268  relationId == AuthMemRelationId ||
269  relationId == DatabaseRelationId ||
270  relationId == DbRoleSettingRelationId ||
271  relationId == ParameterAclRelationId ||
272  relationId == ReplicationOriginRelationId ||
273  relationId == SharedDependRelationId ||
274  relationId == SharedDescriptionRelationId ||
275  relationId == SharedSecLabelRelationId ||
276  relationId == SubscriptionRelationId ||
277  relationId == TableSpaceRelationId)
278  return true;
279  /* These are their indexes */
280  if (relationId == AuthIdOidIndexId ||
281  relationId == AuthIdRolnameIndexId ||
282  relationId == AuthMemMemRoleIndexId ||
283  relationId == AuthMemRoleMemIndexId ||
284  relationId == AuthMemOidIndexId ||
285  relationId == AuthMemGrantorIndexId ||
286  relationId == DatabaseNameIndexId ||
287  relationId == DatabaseOidIndexId ||
288  relationId == DbRoleSettingDatidRolidIndexId ||
289  relationId == ParameterAclOidIndexId ||
290  relationId == ParameterAclParnameIndexId ||
291  relationId == ReplicationOriginIdentIndex ||
292  relationId == ReplicationOriginNameIndex ||
293  relationId == SharedDependDependerIndexId ||
294  relationId == SharedDependReferenceIndexId ||
295  relationId == SharedDescriptionObjIndexId ||
296  relationId == SharedSecLabelObjectIndexId ||
297  relationId == SubscriptionNameIndexId ||
298  relationId == SubscriptionObjectIndexId ||
299  relationId == TablespaceNameIndexId ||
300  relationId == TablespaceOidIndexId)
301  return true;
302  /* These are their toast tables and toast indexes */
303  if (relationId == PgAuthidToastTable ||
304  relationId == PgAuthidToastIndex ||
305  relationId == PgDatabaseToastTable ||
306  relationId == PgDatabaseToastIndex ||
307  relationId == PgDbRoleSettingToastTable ||
308  relationId == PgDbRoleSettingToastIndex ||
309  relationId == PgParameterAclToastTable ||
310  relationId == PgParameterAclToastIndex ||
311  relationId == PgReplicationOriginToastTable ||
312  relationId == PgReplicationOriginToastIndex ||
313  relationId == PgShdescriptionToastTable ||
314  relationId == PgShdescriptionToastIndex ||
315  relationId == PgShseclabelToastTable ||
316  relationId == PgShseclabelToastIndex ||
317  relationId == PgSubscriptionToastTable ||
318  relationId == PgSubscriptionToastIndex ||
319  relationId == PgTablespaceToastTable ||
320  relationId == PgTablespaceToastIndex)
321  return true;
322  return false;
323 }
324 
325 /*
326  * IsPinnedObject
327  * Given the class + OID identity of a database object, report whether
328  * it is "pinned", that is not droppable because the system requires it.
329  *
330  * We used to represent this explicitly in pg_depend, but that proved to be
331  * an undesirable amount of overhead, so now we rely on an OID range test.
332  */
333 bool
334 IsPinnedObject(Oid classId, Oid objectId)
335 {
336  /*
337  * Objects with OIDs above FirstUnpinnedObjectId are never pinned. Since
338  * the OID generator skips this range when wrapping around, this check
339  * guarantees that user-defined objects are never considered pinned.
340  */
341  if (objectId >= FirstUnpinnedObjectId)
342  return false;
343 
344  /*
345  * Large objects are never pinned. We need this special case because
346  * their OIDs can be user-assigned.
347  */
348  if (classId == LargeObjectRelationId)
349  return false;
350 
351  /*
352  * There are a few objects defined in the catalog .dat files that, as a
353  * matter of policy, we prefer not to treat as pinned. We used to handle
354  * that by excluding them from pg_depend, but it's just as easy to
355  * hard-wire their OIDs here. (If the user does indeed drop and recreate
356  * them, they'll have new but certainly-unpinned OIDs, so no problem.)
357  *
358  * Checking both classId and objectId is overkill, since OIDs below
359  * FirstGenbkiObjectId should be globally unique, but do it anyway for
360  * robustness.
361  */
362 
363  /* the public namespace is not pinned */
364  if (classId == NamespaceRelationId &&
365  objectId == PG_PUBLIC_NAMESPACE)
366  return false;
367 
368  /*
369  * Databases are never pinned. It might seem that it'd be prudent to pin
370  * at least template0; but we do this intentionally so that template0 and
371  * template1 can be rebuilt from each other, thus letting them serve as
372  * mutual backups (as long as you've not modified template1, anyway).
373  */
374  if (classId == DatabaseRelationId)
375  return false;
376 
377  /*
378  * All other initdb-created objects are pinned. This is overkill (the
379  * system doesn't really depend on having every last weird datatype, for
380  * instance) but generating only the minimum required set of dependencies
381  * seems hard, and enforcing an accurate list would be much more expensive
382  * than the simple range test used here.
383  */
384  return true;
385 }
386 
387 
388 /*
389  * GetNewOidWithIndex
390  * Generate a new OID that is unique within the system relation.
391  *
392  * Since the OID is not immediately inserted into the table, there is a
393  * race condition here; but a problem could occur only if someone else
394  * managed to cycle through 2^32 OIDs and generate the same OID before we
395  * finish inserting our row. This seems unlikely to be a problem. Note
396  * that if we had to *commit* the row to end the race condition, the risk
397  * would be rather higher; therefore we use SnapshotAny in the test, so that
398  * we will see uncommitted rows. (We used to use SnapshotDirty, but that has
399  * the disadvantage that it ignores recently-deleted rows, creating a risk
400  * of transient conflicts for as long as our own MVCC snapshots think a
401  * recently-deleted row is live. The risk is far higher when selecting TOAST
402  * OIDs, because SnapshotToast considers dead rows as active indefinitely.)
403  *
404  * Note that we are effectively assuming that the table has a relatively small
405  * number of entries (much less than 2^32) and there aren't very long runs of
406  * consecutive existing OIDs. This is a mostly reasonable assumption for
407  * system catalogs.
408  *
409  * Caller must have a suitable lock on the relation.
410  */
411 Oid
412 GetNewOidWithIndex(Relation relation, Oid indexId, AttrNumber oidcolumn)
413 {
414  Oid newOid;
415  SysScanDesc scan;
417  bool collides;
418  uint64 retries = 0;
419  uint64 retries_before_log = GETNEWOID_LOG_THRESHOLD;
420 
421  /* Only system relations are supported */
422  Assert(IsSystemRelation(relation));
423 
424  /* In bootstrap mode, we don't have any indexes to use */
426  return GetNewObjectId();
427 
428  /*
429  * We should never be asked to generate a new pg_type OID during
430  * pg_upgrade; doing so would risk collisions with the OIDs it wants to
431  * assign. Hitting this assert means there's some path where we failed to
432  * ensure that a type OID is determined by commands in the dump script.
433  */
434  Assert(!IsBinaryUpgrade || RelationGetRelid(relation) != TypeRelationId);
435 
436  /* Generate new OIDs until we find one not in the table */
437  do
438  {
440 
441  newOid = GetNewObjectId();
442 
443  ScanKeyInit(&key,
444  oidcolumn,
445  BTEqualStrategyNumber, F_OIDEQ,
446  ObjectIdGetDatum(newOid));
447 
448  /* see notes above about using SnapshotAny */
449  scan = systable_beginscan(relation, indexId, true,
450  SnapshotAny, 1, &key);
451 
452  collides = HeapTupleIsValid(systable_getnext(scan));
453 
454  systable_endscan(scan);
455 
456  /*
457  * Log that we iterate more than GETNEWOID_LOG_THRESHOLD but have not
458  * yet found OID unused in the relation. Then repeat logging with
459  * exponentially increasing intervals until we iterate more than
460  * GETNEWOID_LOG_MAX_INTERVAL. Finally repeat logging every
461  * GETNEWOID_LOG_MAX_INTERVAL unless an unused OID is found. This
462  * logic is necessary not to fill up the server log with the similar
463  * messages.
464  */
465  if (retries >= retries_before_log)
466  {
467  ereport(LOG,
468  (errmsg("still searching for an unused OID in relation \"%s\"",
469  RelationGetRelationName(relation)),
470  errdetail_plural("OID candidates have been checked %llu time, but no unused OID has been found yet.",
471  "OID candidates have been checked %llu times, but no unused OID has been found yet.",
472  retries,
473  (unsigned long long) retries)));
474 
475  /*
476  * Double the number of retries to do before logging next until it
477  * reaches GETNEWOID_LOG_MAX_INTERVAL.
478  */
479  if (retries_before_log * 2 <= GETNEWOID_LOG_MAX_INTERVAL)
480  retries_before_log *= 2;
481  else
482  retries_before_log += GETNEWOID_LOG_MAX_INTERVAL;
483  }
484 
485  retries++;
486  } while (collides);
487 
488  /*
489  * If at least one log message is emitted, also log the completion of OID
490  * assignment.
491  */
492  if (retries > GETNEWOID_LOG_THRESHOLD)
493  {
494  ereport(LOG,
495  (errmsg_plural("new OID has been assigned in relation \"%s\" after %llu retry",
496  "new OID has been assigned in relation \"%s\" after %llu retries",
497  retries,
498  RelationGetRelationName(relation), (unsigned long long) retries)));
499  }
500 
501  return newOid;
502 }
503 
504 /*
505  * GetNewRelFileNumber
506  * Generate a new relfilenumber that is unique within the
507  * database of the given tablespace.
508  *
509  * If the relfilenumber will also be used as the relation's OID, pass the
510  * opened pg_class catalog, and this routine will guarantee that the result
511  * is also an unused OID within pg_class. If the result is to be used only
512  * as a relfilenumber for an existing relation, pass NULL for pg_class.
513  *
514  * As with GetNewOidWithIndex(), there is some theoretical risk of a race
515  * condition, but it doesn't seem worth worrying about.
516  *
517  * Note: we don't support using this in bootstrap mode. All relations
518  * created by bootstrap have preassigned OIDs, so there's no need.
519  */
521 GetNewRelFileNumber(Oid reltablespace, Relation pg_class, char relpersistence)
522 {
523  RelFileLocatorBackend rlocator;
524  char *rpath;
525  bool collides;
526  ProcNumber procNumber;
527 
528  /*
529  * If we ever get here during pg_upgrade, there's something wrong; all
530  * relfilenumber assignments during a binary-upgrade run should be
531  * determined by commands in the dump script.
532  */
534 
535  switch (relpersistence)
536  {
537  case RELPERSISTENCE_TEMP:
538  procNumber = ProcNumberForTempRelations();
539  break;
540  case RELPERSISTENCE_UNLOGGED:
541  case RELPERSISTENCE_PERMANENT:
542  procNumber = INVALID_PROC_NUMBER;
543  break;
544  default:
545  elog(ERROR, "invalid relpersistence: %c", relpersistence);
546  return InvalidRelFileNumber; /* placate compiler */
547  }
548 
549  /* This logic should match RelationInitPhysicalAddr */
550  rlocator.locator.spcOid = reltablespace ? reltablespace : MyDatabaseTableSpace;
551  rlocator.locator.dbOid =
552  (rlocator.locator.spcOid == GLOBALTABLESPACE_OID) ?
554 
555  /*
556  * The relpath will vary based on the backend number, so we must
557  * initialize that properly here to make sure that any collisions based on
558  * filename are properly detected.
559  */
560  rlocator.backend = procNumber;
561 
562  do
563  {
565 
566  /* Generate the OID */
567  if (pg_class)
568  rlocator.locator.relNumber = GetNewOidWithIndex(pg_class, ClassOidIndexId,
569  Anum_pg_class_oid);
570  else
571  rlocator.locator.relNumber = GetNewObjectId();
572 
573  /* Check for existing file of same name */
574  rpath = relpath(rlocator, MAIN_FORKNUM);
575 
576  if (access(rpath, F_OK) == 0)
577  {
578  /* definite collision */
579  collides = true;
580  }
581  else
582  {
583  /*
584  * Here we have a little bit of a dilemma: if errno is something
585  * other than ENOENT, should we declare a collision and loop? In
586  * practice it seems best to go ahead regardless of the errno. If
587  * there is a colliding file we will get an smgr failure when we
588  * attempt to create the new relation file.
589  */
590  collides = false;
591  }
592 
593  pfree(rpath);
594  } while (collides);
595 
596  return rlocator.locator.relNumber;
597 }
598 
599 /*
600  * SQL callable interface for GetNewOidWithIndex(). Outside of initdb's
601  * direct insertions into catalog tables, and recovering from corruption, this
602  * should rarely be needed.
603  *
604  * Function is intentionally not documented in the user facing docs.
605  */
606 Datum
608 {
609  Oid reloid = PG_GETARG_OID(0);
611  Oid idxoid = PG_GETARG_OID(2);
612  Relation rel;
613  Relation idx;
614  HeapTuple atttuple;
615  Form_pg_attribute attform;
616  AttrNumber attno;
617  Oid newoid;
618 
619  /*
620  * As this function is not intended to be used during normal running, and
621  * only supports system catalogs (which require superuser permissions to
622  * modify), just checking for superuser ought to not obstruct valid
623  * usecases.
624  */
625  if (!superuser())
626  ereport(ERROR,
627  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
628  errmsg("must be superuser to call %s()",
629  "pg_nextoid")));
630 
631  rel = table_open(reloid, RowExclusiveLock);
632  idx = index_open(idxoid, RowExclusiveLock);
633 
634  if (!IsSystemRelation(rel))
635  ereport(ERROR,
636  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
637  errmsg("pg_nextoid() can only be used on system catalogs")));
638 
639  if (idx->rd_index->indrelid != RelationGetRelid(rel))
640  ereport(ERROR,
641  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
642  errmsg("index \"%s\" does not belong to table \"%s\"",
644  RelationGetRelationName(rel))));
645 
646  atttuple = SearchSysCacheAttName(reloid, NameStr(*attname));
647  if (!HeapTupleIsValid(atttuple))
648  ereport(ERROR,
649  (errcode(ERRCODE_UNDEFINED_COLUMN),
650  errmsg("column \"%s\" of relation \"%s\" does not exist",
652 
653  attform = ((Form_pg_attribute) GETSTRUCT(atttuple));
654  attno = attform->attnum;
655 
656  if (attform->atttypid != OIDOID)
657  ereport(ERROR,
658  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
659  errmsg("column \"%s\" is not of type oid",
660  NameStr(*attname))));
661 
663  idx->rd_index->indkey.values[0] != attno)
664  ereport(ERROR,
665  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
666  errmsg("index \"%s\" is not the index for column \"%s\"",
668  NameStr(*attname))));
669 
670  newoid = GetNewOidWithIndex(rel, idxoid, attno);
671 
672  ReleaseSysCache(atttuple);
675 
676  PG_RETURN_OID(newoid);
677 }
678 
679 /*
680  * SQL callable interface for StopGeneratingPinnedObjectIds().
681  *
682  * This is only to be used by initdb, so it's intentionally not documented in
683  * the user facing docs.
684  */
685 Datum
687 {
688  /*
689  * Belt-and-suspenders check, since StopGeneratingPinnedObjectIds will
690  * fail anyway in non-single-user mode.
691  */
692  if (!superuser())
693  ereport(ERROR,
694  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
695  errmsg("must be superuser to call %s()",
696  "pg_stop_making_pinned_objects")));
697 
699 
700  PG_RETURN_VOID();
701 }
Datum idx(PG_FUNCTION_ARGS)
Definition: _int_op.c:259
int16 AttrNumber
Definition: attnum.h:21
#define NameStr(name)
Definition: c.h:746
#define Assert(condition)
Definition: c.h:858
bool IsToastRelation(Relation relation)
Definition: catalog.c:166
#define GETNEWOID_LOG_THRESHOLD
Definition: catalog.c:54
bool IsToastNamespace(Oid namespaceId)
Definition: catalog.c:221
bool IsSystemRelation(Relation relation)
Definition: catalog.c:73
Oid GetNewOidWithIndex(Relation relation, Oid indexId, AttrNumber oidcolumn)
Definition: catalog.c:412
RelFileNumber GetNewRelFileNumber(Oid reltablespace, Relation pg_class, char relpersistence)
Definition: catalog.c:521
bool IsCatalogNamespace(Oid namespaceId)
Definition: catalog.c:203
bool IsToastClass(Form_pg_class reltuple)
Definition: catalog.c:186
bool IsCatalogRelation(Relation relation)
Definition: catalog.c:103
bool IsPinnedObject(Oid classId, Oid objectId)
Definition: catalog.c:334
bool IsSharedRelation(Oid relationId)
Definition: catalog.c:264
bool IsCatalogRelationOid(Oid relid)
Definition: catalog.c:120
bool IsInplaceUpdateRelation(Relation relation)
Definition: catalog.c:143
bool IsReservedName(const char *name)
Definition: catalog.c:238
#define GETNEWOID_LOG_MAX_INTERVAL
Definition: catalog.c:55
Datum pg_nextoid(PG_FUNCTION_ARGS)
Definition: catalog.c:607
bool IsInplaceUpdateOid(Oid relid)
Definition: catalog.c:153
bool IsSystemClass(Oid relid, Form_pg_class reltuple)
Definition: catalog.c:85
Datum pg_stop_making_pinned_objects(PG_FUNCTION_ARGS)
Definition: catalog.c:686
int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
Definition: elog.c:1180
int errdetail_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
Definition: elog.c:1295
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define LOG
Definition: elog.h:31
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
#define ereport(elevel,...)
Definition: elog.h:149
#define PG_RETURN_VOID()
Definition: fmgr.h:349
#define PG_GETARG_OID(n)
Definition: fmgr.h:275
#define PG_GETARG_NAME(n)
Definition: fmgr.h:278
#define PG_RETURN_OID(x)
Definition: fmgr.h:360
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
void systable_endscan(SysScanDesc sysscan)
Definition: genam.c:596
HeapTuple systable_getnext(SysScanDesc sysscan)
Definition: genam.c:503
SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key)
Definition: genam.c:384
bool IsBinaryUpgrade
Definition: globals.c:119
Oid MyDatabaseTableSpace
Definition: globals.c:94
Oid MyDatabaseId
Definition: globals.c:92
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:177
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:133
#define RowExclusiveLock
Definition: lockdefs.h:38
void pfree(void *pointer)
Definition: mcxt.c:1521
#define IsBootstrapProcessingMode()
Definition: miscadmin.h:454
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:122
bool isTempToastNamespace(Oid namespaceId)
Definition: namespace.c:3646
NameData attname
Definition: pg_attribute.h:41
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
FormData_pg_class * Form_pg_class
Definition: pg_class.h:153
uintptr_t Datum
Definition: postgres.h:64
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
#define InvalidOid
Definition: postgres_ext.h:36
unsigned int Oid
Definition: postgres_ext.h:31
short access
Definition: preproc-type.c:36
#define ProcNumberForTempRelations()
Definition: proc.h:319
#define INVALID_PROC_NUMBER
Definition: procnumber.h:26
int ProcNumber
Definition: procnumber.h:24
#define RelationGetRelid(relation)
Definition: rel.h:505
#define RelationGetRelationName(relation)
Definition: rel.h:539
#define RelationGetNamespace(relation)
Definition: rel.h:546
#define IndexRelationGetNumberOfKeyAttributes(relation)
Definition: rel.h:524
Oid RelFileNumber
Definition: relpath.h:25
@ MAIN_FORKNUM
Definition: relpath.h:50
#define relpath(rlocator, forknum)
Definition: relpath.h:94
#define InvalidRelFileNumber
Definition: relpath.h:26
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
Definition: scankey.c:76
#define SnapshotAny
Definition: snapmgr.h:33
#define BTEqualStrategyNumber
Definition: stratnum.h:31
RelFileLocator locator
RelFileNumber relNumber
Form_pg_class rd_rel
Definition: rel.h:111
Definition: c.h:741
bool superuser(void)
Definition: superuser.c:46
void ReleaseSysCache(HeapTuple tuple)
Definition: syscache.c:266
HeapTuple SearchSysCacheAttName(Oid relid, const char *attname)
Definition: syscache.c:359
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
#define FirstUnpinnedObjectId
Definition: transam.h:196
Oid GetNewObjectId(void)
Definition: varsup.c:555
void StopGeneratingPinnedObjectIds(void)
Definition: varsup.c:652
const char * name