PostgreSQL Source Code  git master
toasting.h File Reference
#include "storage/lock.h"
Include dependency graph for toasting.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void NewRelationCreateToastTable (Oid relOid, Datum reloptions)
 
void NewHeapCreateToastTable (Oid relOid, Datum reloptions, LOCKMODE lockmode, Oid OIDOldToast)
 
void AlterTableCreateToastTable (Oid relOid, Datum reloptions, LOCKMODE lockmode)
 
void BootstrapToastTable (char *relName, Oid toastOid, Oid toastIndexOid)
 

Function Documentation

◆ AlterTableCreateToastTable()

void AlterTableCreateToastTable ( Oid  relOid,
Datum  reloptions,
LOCKMODE  lockmode 
)

Definition at line 60 of file toasting.c.

61 {
62  CheckAndCreateToastTable(relOid, reloptions, lockmode, true, InvalidOid);
63 }
#define InvalidOid
Definition: postgres_ext.h:36
static void CheckAndCreateToastTable(Oid relOid, Datum reloptions, LOCKMODE lockmode, bool check, Oid OIDOldToast)
Definition: toasting.c:80

References CheckAndCreateToastTable(), and InvalidOid.

Referenced by ATRewriteCatalogs().

◆ BootstrapToastTable()

void BootstrapToastTable ( char *  relName,
Oid  toastOid,
Oid  toastIndexOid 
)

Definition at line 100 of file toasting.c.

101 {
102  Relation rel;
103 
104  rel = table_openrv(makeRangeVar(NULL, relName, -1), AccessExclusiveLock);
105 
106  if (rel->rd_rel->relkind != RELKIND_RELATION &&
107  rel->rd_rel->relkind != RELKIND_MATVIEW)
108  elog(ERROR, "\"%s\" is not a table or materialized view",
109  relName);
110 
111  /* create_toast_table does all the work */
112  if (!create_toast_table(rel, toastOid, toastIndexOid, (Datum) 0,
114  elog(ERROR, "\"%s\" does not require a toast table",
115  relName);
116 
117  table_close(rel, NoLock);
118 }
#define ERROR
Definition: elog.h:39
#define NoLock
Definition: lockdefs.h:34
#define AccessExclusiveLock
Definition: lockdefs.h:43
RangeVar * makeRangeVar(char *schemaname, char *relname, int location)
Definition: makefuncs.c:425
uintptr_t Datum
Definition: postgres.h:64
Form_pg_class rd_rel
Definition: rel.h:111
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_openrv(const RangeVar *relation, LOCKMODE lockmode)
Definition: table.c:83
static bool create_toast_table(Relation rel, Oid toastOid, Oid toastIndexOid, Datum reloptions, LOCKMODE lockmode, bool check, Oid OIDOldToast)
Definition: toasting.c:129

References AccessExclusiveLock, create_toast_table(), elog(), ERROR, InvalidOid, makeRangeVar(), NoLock, RelationData::rd_rel, table_close(), and table_openrv().

◆ NewHeapCreateToastTable()

void NewHeapCreateToastTable ( Oid  relOid,
Datum  reloptions,
LOCKMODE  lockmode,
Oid  OIDOldToast 
)

Definition at line 66 of file toasting.c.

68 {
69  CheckAndCreateToastTable(relOid, reloptions, lockmode, false, OIDOldToast);
70 }

References CheckAndCreateToastTable().

Referenced by make_new_heap().

◆ NewRelationCreateToastTable()

void NewRelationCreateToastTable ( Oid  relOid,
Datum  reloptions 
)

Definition at line 73 of file toasting.c.

74 {
75  CheckAndCreateToastTable(relOid, reloptions, AccessExclusiveLock, false,
76  InvalidOid);
77 }

References AccessExclusiveLock, CheckAndCreateToastTable(), and InvalidOid.

Referenced by create_ctas_internal(), and ProcessUtilitySlow().