PostgreSQL Source Code  git master
event_trigger.c File Reference
#include "postgres.h"
#include "access/htup_details.h"
#include "access/table.h"
#include "access/xact.h"
#include "catalog/catalog.h"
#include "catalog/dependency.h"
#include "catalog/indexing.h"
#include "catalog/objectaccess.h"
#include "catalog/pg_event_trigger.h"
#include "catalog/pg_namespace.h"
#include "catalog/pg_opclass.h"
#include "catalog/pg_opfamily.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_trigger.h"
#include "catalog/pg_ts_config.h"
#include "catalog/pg_type.h"
#include "commands/dbcommands.h"
#include "commands/event_trigger.h"
#include "commands/extension.h"
#include "commands/trigger.h"
#include "funcapi.h"
#include "lib/ilist.h"
#include "miscadmin.h"
#include "parser/parse_func.h"
#include "pgstat.h"
#include "tcop/deparse_utility.h"
#include "tcop/utility.h"
#include "utils/acl.h"
#include "utils/builtins.h"
#include "utils/evtcache.h"
#include "utils/fmgroids.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/rel.h"
#include "utils/syscache.h"
Include dependency graph for event_trigger.c:

Go to the source code of this file.

Data Structures

struct  EventTriggerQueryState
 
struct  SQLDropObject
 

Typedefs

typedef struct EventTriggerQueryState EventTriggerQueryState
 
typedef struct SQLDropObject SQLDropObject
 

Functions

static void AlterEventTriggerOwner_internal (Relation rel, HeapTuple tup, Oid newOwnerId)
 
static void error_duplicate_filter_variable (const char *defname)
 
static Datum filter_list_to_array (List *filterlist)
 
static Oid insert_event_trigger_tuple (const char *trigname, const char *eventname, Oid evtOwner, Oid funcoid, List *taglist)
 
static void validate_ddl_tags (const char *filtervar, List *taglist)
 
static void validate_table_rewrite_tags (const char *filtervar, List *taglist)
 
static void EventTriggerInvoke (List *fn_oid_list, EventTriggerData *trigdata)
 
static const char * stringify_grant_objtype (ObjectType objtype)
 
static const char * stringify_adefprivs_objtype (ObjectType objtype)
 
Oid CreateEventTrigger (CreateEventTrigStmt *stmt)
 
Oid AlterEventTrigger (AlterEventTrigStmt *stmt)
 
ObjectAddress AlterEventTriggerOwner (const char *name, Oid newOwnerId)
 
void AlterEventTriggerOwner_oid (Oid trigOid, Oid newOwnerId)
 
Oid get_event_trigger_oid (const char *trigname, bool missing_ok)
 
static bool filter_event_trigger (CommandTag tag, EventTriggerCacheItem *item)
 
static ListEventTriggerCommonSetup (Node *parsetree, EventTriggerEvent event, const char *eventstr, EventTriggerData *trigdata)
 
void EventTriggerDDLCommandStart (Node *parsetree)
 
void EventTriggerDDLCommandEnd (Node *parsetree)
 
void EventTriggerSQLDrop (Node *parsetree)
 
void EventTriggerTableRewrite (Node *parsetree, Oid tableOid, int reason)
 
bool EventTriggerSupportsObjectType (ObjectType obtype)
 
bool EventTriggerSupportsObjectClass (ObjectClass objclass)
 
bool EventTriggerBeginCompleteQuery (void)
 
void EventTriggerEndCompleteQuery (void)
 
bool trackDroppedObjectsNeeded (void)
 
void EventTriggerSQLDropAddObject (const ObjectAddress *object, bool original, bool normal)
 
Datum pg_event_trigger_dropped_objects (PG_FUNCTION_ARGS)
 
Datum pg_event_trigger_table_rewrite_oid (PG_FUNCTION_ARGS)
 
Datum pg_event_trigger_table_rewrite_reason (PG_FUNCTION_ARGS)
 
void EventTriggerInhibitCommandCollection (void)
 
void EventTriggerUndoInhibitCommandCollection (void)
 
void EventTriggerCollectSimpleCommand (ObjectAddress address, ObjectAddress secondaryObject, Node *parsetree)
 
void EventTriggerAlterTableStart (Node *parsetree)
 
void EventTriggerAlterTableRelid (Oid objectId)
 
void EventTriggerCollectAlterTableSubcmd (Node *subcmd, ObjectAddress address)
 
void EventTriggerAlterTableEnd (void)
 
void EventTriggerCollectGrant (InternalGrant *istmt)
 
void EventTriggerCollectAlterOpFam (AlterOpFamilyStmt *stmt, Oid opfamoid, List *operators, List *procedures)
 
void EventTriggerCollectCreateOpClass (CreateOpClassStmt *stmt, Oid opcoid, List *operators, List *procedures)
 
void EventTriggerCollectAlterTSConfig (AlterTSConfigurationStmt *stmt, Oid cfgId, Oid *dictIds, int ndicts)
 
void EventTriggerCollectAlterDefPrivs (AlterDefaultPrivilegesStmt *stmt)
 
Datum pg_event_trigger_ddl_commands (PG_FUNCTION_ARGS)
 

Variables

static EventTriggerQueryStatecurrentEventTriggerState = NULL
 

Typedef Documentation

◆ EventTriggerQueryState

◆ SQLDropObject

typedef struct SQLDropObject SQLDropObject

Function Documentation

◆ AlterEventTrigger()

Oid AlterEventTrigger ( AlterEventTrigStmt stmt)

Definition at line 361 of file event_trigger.c.

362 {
363  Relation tgrel;
364  HeapTuple tup;
365  Oid trigoid;
366  Form_pg_event_trigger evtForm;
367  char tgenabled = stmt->tgenabled;
368 
369  tgrel = table_open(EventTriggerRelationId, RowExclusiveLock);
370 
372  CStringGetDatum(stmt->trigname));
373  if (!HeapTupleIsValid(tup))
374  ereport(ERROR,
375  (errcode(ERRCODE_UNDEFINED_OBJECT),
376  errmsg("event trigger \"%s\" does not exist",
377  stmt->trigname)));
378 
379  evtForm = (Form_pg_event_trigger) GETSTRUCT(tup);
380  trigoid = evtForm->oid;
381 
382  if (!object_ownercheck(EventTriggerRelationId, trigoid, GetUserId()))
384  stmt->trigname);
385 
386  /* tuple is a copy, so we can modify it below */
387  evtForm->evtenabled = tgenabled;
388 
389  CatalogTupleUpdate(tgrel, &tup->t_self, tup);
390 
391  InvokeObjectPostAlterHook(EventTriggerRelationId,
392  trigoid, 0);
393 
394  /* clean up */
395  heap_freetuple(tup);
397 
398  return trigoid;
399 }
@ ACLCHECK_NOT_OWNER
Definition: acl.h:185
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
Definition: aclchk.c:2673
bool object_ownercheck(Oid classid, Oid objectid, Oid roleid)
Definition: aclchk.c:3976
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1338
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
#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
#define RowExclusiveLock
Definition: lockdefs.h:38
Oid GetUserId(void)
Definition: miscinit.c:510
#define InvokeObjectPostAlterHook(classId, objectId, subId)
Definition: objectaccess.h:197
@ OBJECT_EVENT_TRIGGER
Definition: parsenodes.h:2096
FormData_pg_event_trigger * Form_pg_event_trigger
static Datum CStringGetDatum(const char *X)
Definition: postgres.h:350
unsigned int Oid
Definition: postgres_ext.h:31
ItemPointerData t_self
Definition: htup.h:65
#define SearchSysCacheCopy1(cacheId, key1)
Definition: syscache.h:182
@ EVENTTRIGGERNAME
Definition: syscache.h:59
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40

References aclcheck_error(), ACLCHECK_NOT_OWNER, CatalogTupleUpdate(), CStringGetDatum(), ereport, errcode(), errmsg(), ERROR, EVENTTRIGGERNAME, GETSTRUCT, GetUserId(), heap_freetuple(), HeapTupleIsValid, InvokeObjectPostAlterHook, OBJECT_EVENT_TRIGGER, object_ownercheck(), RowExclusiveLock, SearchSysCacheCopy1, stmt, HeapTupleData::t_self, table_close(), and table_open().

Referenced by standard_ProcessUtility().

◆ AlterEventTriggerOwner()

ObjectAddress AlterEventTriggerOwner ( const char *  name,
Oid  newOwnerId 
)

Definition at line 405 of file event_trigger.c.

406 {
407  Oid evtOid;
408  HeapTuple tup;
409  Form_pg_event_trigger evtForm;
410  Relation rel;
411  ObjectAddress address;
412 
413  rel = table_open(EventTriggerRelationId, RowExclusiveLock);
414 
416 
417  if (!HeapTupleIsValid(tup))
418  ereport(ERROR,
419  (errcode(ERRCODE_UNDEFINED_OBJECT),
420  errmsg("event trigger \"%s\" does not exist", name)));
421 
422  evtForm = (Form_pg_event_trigger) GETSTRUCT(tup);
423  evtOid = evtForm->oid;
424 
425  AlterEventTriggerOwner_internal(rel, tup, newOwnerId);
426 
427  ObjectAddressSet(address, EventTriggerRelationId, evtOid);
428 
429  heap_freetuple(tup);
430 
432 
433  return address;
434 }
const char * name
Definition: encode.c:571
static void AlterEventTriggerOwner_internal(Relation rel, HeapTuple tup, Oid newOwnerId)
#define ObjectAddressSet(addr, class_id, object_id)
Definition: objectaddress.h:40

References AlterEventTriggerOwner_internal(), CStringGetDatum(), ereport, errcode(), errmsg(), ERROR, EVENTTRIGGERNAME, GETSTRUCT, heap_freetuple(), HeapTupleIsValid, name, ObjectAddressSet, RowExclusiveLock, SearchSysCacheCopy1, table_close(), and table_open().

Referenced by ExecAlterOwnerStmt().

◆ AlterEventTriggerOwner_internal()

static void AlterEventTriggerOwner_internal ( Relation  rel,
HeapTuple  tup,
Oid  newOwnerId 
)
static

Definition at line 465 of file event_trigger.c.

466 {
468 
469  form = (Form_pg_event_trigger) GETSTRUCT(tup);
470 
471  if (form->evtowner == newOwnerId)
472  return;
473 
474  if (!object_ownercheck(EventTriggerRelationId, form->oid, GetUserId()))
476  NameStr(form->evtname));
477 
478  /* New owner must be a superuser */
479  if (!superuser_arg(newOwnerId))
480  ereport(ERROR,
481  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
482  errmsg("permission denied to change owner of event trigger \"%s\"",
483  NameStr(form->evtname)),
484  errhint("The owner of an event trigger must be a superuser.")));
485 
486  form->evtowner = newOwnerId;
487  CatalogTupleUpdate(rel, &tup->t_self, tup);
488 
489  /* Update owner dependency reference */
490  changeDependencyOnOwner(EventTriggerRelationId,
491  form->oid,
492  newOwnerId);
493 
494  InvokeObjectPostAlterHook(EventTriggerRelationId,
495  form->oid, 0);
496 }
#define NameStr(name)
Definition: c.h:730
int errhint(const char *fmt,...)
Definition: elog.c:1316
void changeDependencyOnOwner(Oid classId, Oid objectId, Oid newOwnerId)
Definition: pg_shdepend.c:313
bool superuser_arg(Oid roleid)
Definition: superuser.c:56

References aclcheck_error(), ACLCHECK_NOT_OWNER, CatalogTupleUpdate(), changeDependencyOnOwner(), ereport, errcode(), errhint(), errmsg(), ERROR, GETSTRUCT, GetUserId(), InvokeObjectPostAlterHook, NameStr, OBJECT_EVENT_TRIGGER, object_ownercheck(), superuser_arg(), and HeapTupleData::t_self.

Referenced by AlterEventTriggerOwner(), and AlterEventTriggerOwner_oid().

◆ AlterEventTriggerOwner_oid()

void AlterEventTriggerOwner_oid ( Oid  trigOid,
Oid  newOwnerId 
)

Definition at line 440 of file event_trigger.c.

441 {
442  HeapTuple tup;
443  Relation rel;
444 
445  rel = table_open(EventTriggerRelationId, RowExclusiveLock);
446 
448 
449  if (!HeapTupleIsValid(tup))
450  ereport(ERROR,
451  (errcode(ERRCODE_UNDEFINED_OBJECT),
452  errmsg("event trigger with OID %u does not exist", trigOid)));
453 
454  AlterEventTriggerOwner_internal(rel, tup, newOwnerId);
455 
456  heap_freetuple(tup);
457 
459 }
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
@ EVENTTRIGGEROID
Definition: syscache.h:60

References AlterEventTriggerOwner_internal(), ereport, errcode(), errmsg(), ERROR, EVENTTRIGGEROID, heap_freetuple(), HeapTupleIsValid, ObjectIdGetDatum(), RowExclusiveLock, SearchSysCacheCopy1, table_close(), and table_open().

Referenced by shdepReassignOwned().

◆ CreateEventTrigger()

Oid CreateEventTrigger ( CreateEventTrigStmt stmt)

Definition at line 108 of file event_trigger.c.

109 {
110  HeapTuple tuple;
111  Oid funcoid;
112  Oid funcrettype;
113  Oid evtowner = GetUserId();
114  ListCell *lc;
115  List *tags = NULL;
116 
117  /*
118  * It would be nice to allow database owners or even regular users to do
119  * this, but there are obvious privilege escalation risks which would have
120  * to somehow be plugged first.
121  */
122  if (!superuser())
123  ereport(ERROR,
124  (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
125  errmsg("permission denied to create event trigger \"%s\"",
126  stmt->trigname),
127  errhint("Must be superuser to create an event trigger.")));
128 
129  /* Validate event name. */
130  if (strcmp(stmt->eventname, "ddl_command_start") != 0 &&
131  strcmp(stmt->eventname, "ddl_command_end") != 0 &&
132  strcmp(stmt->eventname, "sql_drop") != 0 &&
133  strcmp(stmt->eventname, "table_rewrite") != 0)
134  ereport(ERROR,
135  (errcode(ERRCODE_SYNTAX_ERROR),
136  errmsg("unrecognized event name \"%s\"",
137  stmt->eventname)));
138 
139  /* Validate filter conditions. */
140  foreach(lc, stmt->whenclause)
141  {
142  DefElem *def = (DefElem *) lfirst(lc);
143 
144  if (strcmp(def->defname, "tag") == 0)
145  {
146  if (tags != NULL)
148  tags = (List *) def->arg;
149  }
150  else
151  ereport(ERROR,
152  (errcode(ERRCODE_SYNTAX_ERROR),
153  errmsg("unrecognized filter variable \"%s\"", def->defname)));
154  }
155 
156  /* Validate tag list, if any. */
157  if ((strcmp(stmt->eventname, "ddl_command_start") == 0 ||
158  strcmp(stmt->eventname, "ddl_command_end") == 0 ||
159  strcmp(stmt->eventname, "sql_drop") == 0)
160  && tags != NULL)
161  validate_ddl_tags("tag", tags);
162  else if (strcmp(stmt->eventname, "table_rewrite") == 0
163  && tags != NULL)
164  validate_table_rewrite_tags("tag", tags);
165 
166  /*
167  * Give user a nice error message if an event trigger of the same name
168  * already exists.
169  */
171  if (HeapTupleIsValid(tuple))
172  ereport(ERROR,
174  errmsg("event trigger \"%s\" already exists",
175  stmt->trigname)));
176 
177  /* Find and validate the trigger function. */
178  funcoid = LookupFuncName(stmt->funcname, 0, NULL, false);
179  funcrettype = get_func_rettype(funcoid);
180  if (funcrettype != EVENT_TRIGGEROID)
181  ereport(ERROR,
182  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
183  errmsg("function %s must return type %s",
184  NameListToString(stmt->funcname), "event_trigger")));
185 
186  /* Insert catalog entries. */
187  return insert_event_trigger_tuple(stmt->trigname, stmt->eventname,
188  evtowner, funcoid, tags);
189 }
static void validate_table_rewrite_tags(const char *filtervar, List *taglist)
static void validate_ddl_tags(const char *filtervar, List *taglist)
static void error_duplicate_filter_variable(const char *defname)
static Oid insert_event_trigger_tuple(const char *trigname, const char *eventname, Oid evtOwner, Oid funcoid, List *taglist)
Oid get_func_rettype(Oid funcid)
Definition: lsyscache.c:1637
char * NameListToString(List *names)
Definition: namespace.c:3145
Oid LookupFuncName(List *funcname, int nargs, const Oid *argtypes, bool missing_ok)
Definition: parse_func.c:2143
#define lfirst(lc)
Definition: pg_list.h:172
#define ERRCODE_DUPLICATE_OBJECT
Definition: streamutil.c:32
char * defname
Definition: parsenodes.h:810
Node * arg
Definition: parsenodes.h:811
Definition: pg_list.h:54
bool superuser(void)
Definition: superuser.c:46
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Definition: syscache.c:818

References DefElem::arg, CStringGetDatum(), DefElem::defname, ereport, errcode(), ERRCODE_DUPLICATE_OBJECT, errhint(), errmsg(), ERROR, error_duplicate_filter_variable(), EVENTTRIGGERNAME, get_func_rettype(), GetUserId(), HeapTupleIsValid, insert_event_trigger_tuple(), lfirst, LookupFuncName(), NameListToString(), SearchSysCache1(), stmt, superuser(), validate_ddl_tags(), and validate_table_rewrite_tags().

Referenced by standard_ProcessUtility().

◆ error_duplicate_filter_variable()

static void error_duplicate_filter_variable ( const char *  defname)
static

Definition at line 244 of file event_trigger.c.

245 {
246  ereport(ERROR,
247  (errcode(ERRCODE_SYNTAX_ERROR),
248  errmsg("filter variable \"%s\" specified more than once",
249  defname)));
250 }

References ereport, errcode(), errmsg(), and ERROR.

Referenced by CreateEventTrigger().

◆ EventTriggerAlterTableEnd()

void EventTriggerAlterTableEnd ( void  )

Definition at line 1608 of file event_trigger.c.

1609 {
1610  CollectedCommand *parent;
1611 
1612  /* ignore if event trigger context not set, or collection disabled */
1613  if (!currentEventTriggerState ||
1615  return;
1616 
1618 
1619  /* If no subcommands, don't collect */
1621  {
1622  MemoryContext oldcxt;
1623 
1625 
1629 
1630  MemoryContextSwitchTo(oldcxt);
1631  }
1632  else
1634 
1636 }
static EventTriggerQueryState * currentEventTriggerState
Definition: event_trigger.c:73
List * lappend(List *list, void *datum)
Definition: list.c:338
void pfree(void *pointer)
Definition: mcxt.c:1436
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
#define NIL
Definition: pg_list.h:68
struct CollectedCommand::@110::@112 alterTable
struct CollectedCommand * parent
union CollectedCommand::@110 d
CollectedCommand * currentCommand
Definition: event_trigger.c:67

References CollectedCommand::alterTable, EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, EventTriggerQueryState::currentCommand, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, lappend(), MemoryContextSwitchTo(), NIL, CollectedCommand::parent, and pfree().

Referenced by AlterTableMoveAll(), ProcessUtilityForAlterTable(), and ProcessUtilitySlow().

◆ EventTriggerAlterTableRelid()

◆ EventTriggerAlterTableStart()

void EventTriggerAlterTableStart ( Node parsetree)

Definition at line 1521 of file event_trigger.c.

1522 {
1523  MemoryContext oldcxt;
1524  CollectedCommand *command;
1525 
1526  /* ignore if event trigger context not set, or collection disabled */
1527  if (!currentEventTriggerState ||
1529  return;
1530 
1532 
1533  command = palloc(sizeof(CollectedCommand));
1534 
1535  command->type = SCT_AlterTable;
1536  command->in_extension = creating_extension;
1537 
1538  command->d.alterTable.classId = RelationRelationId;
1539  command->d.alterTable.objectId = InvalidOid;
1540  command->d.alterTable.subcmds = NIL;
1541  command->parsetree = copyObject(parsetree);
1542 
1545 
1546  MemoryContextSwitchTo(oldcxt);
1547 }
@ SCT_AlterTable
bool creating_extension
Definition: extension.c:73
void * palloc(Size size)
Definition: mcxt.c:1210
#define copyObject(obj)
Definition: nodes.h:244
#define InvalidOid
Definition: postgres_ext.h:36
CollectedCommandType type

References CollectedCommand::alterTable, EventTriggerQueryState::commandCollectionInhibited, copyObject, creating_extension, EventTriggerQueryState::currentCommand, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::in_extension, InvalidOid, MemoryContextSwitchTo(), NIL, palloc(), CollectedCommand::parent, CollectedCommand::parsetree, SCT_AlterTable, and CollectedCommand::type.

Referenced by AlterTableMoveAll(), ProcessUtilityForAlterTable(), and ProcessUtilitySlow().

◆ EventTriggerBeginCompleteQuery()

bool EventTriggerBeginCompleteQuery ( void  )

Definition at line 1079 of file event_trigger.c.

1080 {
1082  MemoryContext cxt;
1083 
1084  /*
1085  * Currently, sql_drop, table_rewrite, ddl_command_end events are the only
1086  * reason to have event trigger state at all; so if there are none, don't
1087  * install one.
1088  */
1090  return false;
1091 
1093  "event trigger state",
1096  state->cxt = cxt;
1097  slist_init(&(state->SQLDropList));
1098  state->in_sql_drop = false;
1099  state->table_rewrite_oid = InvalidOid;
1100 
1101  state->commandCollectionInhibited = currentEventTriggerState ?
1103  state->currentCommand = NULL;
1104  state->commandList = NIL;
1105  state->previous = currentEventTriggerState;
1107 
1108  return true;
1109 }
bool trackDroppedObjectsNeeded(void)
static void slist_init(slist_head *head)
Definition: ilist.h:986
MemoryContext TopMemoryContext
Definition: mcxt.c:141
void * MemoryContextAlloc(MemoryContext context, Size size)
Definition: mcxt.c:1005
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:153
Definition: regguts.h:318

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, EventTriggerQueryState::commandCollectionInhibited, currentEventTriggerState, InvalidOid, MemoryContextAlloc(), NIL, slist_init(), TopMemoryContext, and trackDroppedObjectsNeeded().

Referenced by ProcessUtilitySlow().

◆ EventTriggerCollectAlterDefPrivs()

void EventTriggerCollectAlterDefPrivs ( AlterDefaultPrivilegesStmt stmt)

Definition at line 1792 of file event_trigger.c.

1793 {
1794  MemoryContext oldcxt;
1795  CollectedCommand *command;
1796 
1797  /* ignore if event trigger context not set, or collection disabled */
1798  if (!currentEventTriggerState ||
1800  return;
1801 
1803 
1804  command = palloc0(sizeof(CollectedCommand));
1805  command->type = SCT_AlterDefaultPrivileges;
1806  command->d.defprivs.objtype = stmt->action->objtype;
1807  command->in_extension = creating_extension;
1808  command->parsetree = (Node *) copyObject(stmt);
1809 
1812  MemoryContextSwitchTo(oldcxt);
1813 }
@ SCT_AlterDefaultPrivileges
void * palloc0(Size size)
Definition: mcxt.c:1241
struct CollectedCommand::@110::@117 defprivs
Definition: nodes.h:129

References EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, copyObject, creating_extension, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::defprivs, CollectedCommand::in_extension, lappend(), MemoryContextSwitchTo(), palloc0(), CollectedCommand::parsetree, SCT_AlterDefaultPrivileges, stmt, and CollectedCommand::type.

Referenced by ProcessUtilitySlow().

◆ EventTriggerCollectAlterOpFam()

void EventTriggerCollectAlterOpFam ( AlterOpFamilyStmt stmt,
Oid  opfamoid,
List operators,
List procedures 
)

Definition at line 1690 of file event_trigger.c.

1692 {
1693  MemoryContext oldcxt;
1694  CollectedCommand *command;
1695 
1696  /* ignore if event trigger context not set, or collection disabled */
1697  if (!currentEventTriggerState ||
1699  return;
1700 
1702 
1703  command = palloc(sizeof(CollectedCommand));
1704  command->type = SCT_AlterOpFamily;
1705  command->in_extension = creating_extension;
1706  ObjectAddressSet(command->d.opfam.address,
1707  OperatorFamilyRelationId, opfamoid);
1708  command->d.opfam.operators = operators;
1709  command->d.opfam.procedures = procedures;
1710  command->parsetree = (Node *) copyObject(stmt);
1711 
1714 
1715  MemoryContextSwitchTo(oldcxt);
1716 }
@ SCT_AlterOpFamily
struct CollectedCommand::@110::@114 opfam

References EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, copyObject, creating_extension, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::in_extension, lappend(), MemoryContextSwitchTo(), ObjectAddressSet, CollectedCommand::opfam, palloc(), CollectedCommand::parsetree, SCT_AlterOpFamily, stmt, and CollectedCommand::type.

Referenced by AlterOpFamilyAdd(), and AlterOpFamilyDrop().

◆ EventTriggerCollectAlterTableSubcmd()

void EventTriggerCollectAlterTableSubcmd ( Node subcmd,
ObjectAddress  address 
)

Definition at line 1573 of file event_trigger.c.

1574 {
1575  MemoryContext oldcxt;
1577 
1578  /* ignore if event trigger context not set, or collection disabled */
1579  if (!currentEventTriggerState ||
1581  return;
1582 
1583  Assert(IsA(subcmd, AlterTableCmd));
1586 
1588 
1589  newsub = palloc(sizeof(CollectedATSubcmd));
1590  newsub->address = address;
1591  newsub->parsetree = copyObject(subcmd);
1592 
1595 
1596  MemoryContextSwitchTo(oldcxt);
1597 }
#define OidIsValid(objectId)
Definition: c.h:759
Assert(fmt[strlen(fmt) - 1] !='\n')
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
static color newsub(struct colormap *cm, color co)
Definition: regc_color.c:389

References CollectedCommand::alterTable, Assert(), EventTriggerQueryState::commandCollectionInhibited, copyObject, EventTriggerQueryState::currentCommand, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, IsA, lappend(), MemoryContextSwitchTo(), newsub(), OidIsValid, and palloc().

Referenced by ATExecCmd().

◆ EventTriggerCollectAlterTSConfig()

void EventTriggerCollectAlterTSConfig ( AlterTSConfigurationStmt stmt,
Oid  cfgId,
Oid dictIds,
int  ndicts 
)

Definition at line 1757 of file event_trigger.c.

1759 {
1760  MemoryContext oldcxt;
1761  CollectedCommand *command;
1762 
1763  /* ignore if event trigger context not set, or collection disabled */
1764  if (!currentEventTriggerState ||
1766  return;
1767 
1769 
1770  command = palloc0(sizeof(CollectedCommand));
1771  command->type = SCT_AlterTSConfig;
1772  command->in_extension = creating_extension;
1773  ObjectAddressSet(command->d.atscfg.address,
1774  TSConfigRelationId, cfgId);
1775  command->d.atscfg.dictIds = palloc(sizeof(Oid) * ndicts);
1776  memcpy(command->d.atscfg.dictIds, dictIds, sizeof(Oid) * ndicts);
1777  command->d.atscfg.ndicts = ndicts;
1778  command->parsetree = (Node *) copyObject(stmt);
1779 
1782 
1783  MemoryContextSwitchTo(oldcxt);
1784 }
@ SCT_AlterTSConfig
struct CollectedCommand::@110::@116 atscfg

References CollectedCommand::atscfg, EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, copyObject, creating_extension, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::in_extension, lappend(), MemoryContextSwitchTo(), ObjectAddressSet, palloc(), palloc0(), CollectedCommand::parsetree, SCT_AlterTSConfig, stmt, and CollectedCommand::type.

Referenced by DropConfigurationMapping(), and MakeConfigurationMapping().

◆ EventTriggerCollectCreateOpClass()

void EventTriggerCollectCreateOpClass ( CreateOpClassStmt stmt,
Oid  opcoid,
List operators,
List procedures 
)

Definition at line 1723 of file event_trigger.c.

1725 {
1726  MemoryContext oldcxt;
1727  CollectedCommand *command;
1728 
1729  /* ignore if event trigger context not set, or collection disabled */
1730  if (!currentEventTriggerState ||
1732  return;
1733 
1735 
1736  command = palloc0(sizeof(CollectedCommand));
1737  command->type = SCT_CreateOpClass;
1738  command->in_extension = creating_extension;
1739  ObjectAddressSet(command->d.createopc.address,
1740  OperatorClassRelationId, opcoid);
1741  command->d.createopc.operators = operators;
1742  command->d.createopc.procedures = procedures;
1743  command->parsetree = (Node *) copyObject(stmt);
1744 
1747 
1748  MemoryContextSwitchTo(oldcxt);
1749 }
@ SCT_CreateOpClass
struct CollectedCommand::@110::@115 createopc

References EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, copyObject, CollectedCommand::createopc, creating_extension, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::in_extension, lappend(), MemoryContextSwitchTo(), ObjectAddressSet, palloc0(), CollectedCommand::parsetree, SCT_CreateOpClass, stmt, and CollectedCommand::type.

Referenced by DefineOpClass().

◆ EventTriggerCollectGrant()

void EventTriggerCollectGrant ( InternalGrant istmt)

Definition at line 1646 of file event_trigger.c.

1647 {
1648  MemoryContext oldcxt;
1649  CollectedCommand *command;
1650  InternalGrant *icopy;
1651  ListCell *cell;
1652 
1653  /* ignore if event trigger context not set, or collection disabled */
1654  if (!currentEventTriggerState ||
1656  return;
1657 
1659 
1660  /*
1661  * This is tedious, but necessary.
1662  */
1663  icopy = palloc(sizeof(InternalGrant));
1664  memcpy(icopy, istmt, sizeof(InternalGrant));
1665  icopy->objects = list_copy(istmt->objects);
1666  icopy->grantees = list_copy(istmt->grantees);
1667  icopy->col_privs = NIL;
1668  foreach(cell, istmt->col_privs)
1669  icopy->col_privs = lappend(icopy->col_privs, copyObject(lfirst(cell)));
1670 
1671  /* Now collect it, using the copied InternalGrant */
1672  command = palloc(sizeof(CollectedCommand));
1673  command->type = SCT_Grant;
1674  command->in_extension = creating_extension;
1675  command->d.grant.istmt = icopy;
1676  command->parsetree = NULL;
1677 
1680 
1681  MemoryContextSwitchTo(oldcxt);
1682 }
@ SCT_Grant
List * list_copy(const List *oldlist)
Definition: list.c:1572
struct CollectedCommand::@110::@113 grant

References InternalGrant::col_privs, EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, copyObject, creating_extension, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::grant, InternalGrant::grantees, CollectedCommand::in_extension, lappend(), lfirst, list_copy(), MemoryContextSwitchTo(), NIL, InternalGrant::objects, palloc(), CollectedCommand::parsetree, SCT_Grant, and CollectedCommand::type.

Referenced by ExecGrantStmt_oids().

◆ EventTriggerCollectSimpleCommand()

void EventTriggerCollectSimpleCommand ( ObjectAddress  address,
ObjectAddress  secondaryObject,
Node parsetree 
)

Definition at line 1483 of file event_trigger.c.

1486 {
1487  MemoryContext oldcxt;
1488  CollectedCommand *command;
1489 
1490  /* ignore if event trigger context not set, or collection disabled */
1491  if (!currentEventTriggerState ||
1493  return;
1494 
1496 
1497  command = palloc(sizeof(CollectedCommand));
1498 
1499  command->type = SCT_Simple;
1500  command->in_extension = creating_extension;
1501 
1502  command->d.simple.address = address;
1503  command->d.simple.secondaryObject = secondaryObject;
1504  command->parsetree = copyObject(parsetree);
1505 
1507  command);
1508 
1509  MemoryContextSwitchTo(oldcxt);
1510 }
@ SCT_Simple
struct CollectedCommand::@110::@111 simple

References EventTriggerQueryState::commandCollectionInhibited, EventTriggerQueryState::commandList, copyObject, creating_extension, currentEventTriggerState, EventTriggerQueryState::cxt, CollectedCommand::d, CollectedCommand::in_extension, lappend(), MemoryContextSwitchTo(), palloc(), CollectedCommand::parsetree, SCT_Simple, CollectedCommand::simple, and CollectedCommand::type.

Referenced by AlterPublicationOptions(), CreateOpFamily(), CreateSchemaCommand(), ProcessUtilitySlow(), PublicationAddSchemas(), and PublicationAddTables().

◆ EventTriggerCommonSetup()

static List* EventTriggerCommonSetup ( Node parsetree,
EventTriggerEvent  event,
const char *  eventstr,
EventTriggerData trigdata 
)
static

Definition at line 555 of file event_trigger.c.

558 {
559  CommandTag tag;
560  List *cachelist;
561  ListCell *lc;
562  List *runlist = NIL;
563 
564  /*
565  * We want the list of command tags for which this procedure is actually
566  * invoked to match up exactly with the list that CREATE EVENT TRIGGER
567  * accepts. This debugging cross-check will throw an error if this
568  * function is invoked for a command tag that CREATE EVENT TRIGGER won't
569  * accept. (Unfortunately, there doesn't seem to be any simple, automated
570  * way to verify that CREATE EVENT TRIGGER doesn't accept extra stuff that
571  * never reaches this control point.)
572  *
573  * If this cross-check fails for you, you probably need to either adjust
574  * standard_ProcessUtility() not to invoke event triggers for the command
575  * type in question, or you need to adjust event_trigger_ok to accept the
576  * relevant command tag.
577  */
578 #ifdef USE_ASSERT_CHECKING
579  {
580  CommandTag dbgtag;
581 
582  dbgtag = CreateCommandTag(parsetree);
583  if (event == EVT_DDLCommandStart ||
584  event == EVT_DDLCommandEnd ||
585  event == EVT_SQLDrop)
586  {
587  if (!command_tag_event_trigger_ok(dbgtag))
588  elog(ERROR, "unexpected command tag \"%s\"", GetCommandTagName(dbgtag));
589  }
590  else if (event == EVT_TableRewrite)
591  {
592  if (!command_tag_table_rewrite_ok(dbgtag))
593  elog(ERROR, "unexpected command tag \"%s\"", GetCommandTagName(dbgtag));
594  }
595  }
596 #endif
597 
598  /* Use cache to find triggers for this event; fast exit if none. */
599  cachelist = EventCacheLookup(event);
600  if (cachelist == NIL)
601  return NIL;
602 
603  /* Get the command tag. */
604  tag = CreateCommandTag(parsetree);
605 
606  /*
607  * Filter list of event triggers by command tag, and copy them into our
608  * memory context. Once we start running the command triggers, or indeed
609  * once we do anything at all that touches the catalogs, an invalidation
610  * might leave cachelist pointing at garbage, so we must do this before we
611  * can do much else.
612  */
613  foreach(lc, cachelist)
614  {
615  EventTriggerCacheItem *item = lfirst(lc);
616 
617  if (filter_event_trigger(tag, item))
618  {
619  /* We must plan to fire this trigger. */
620  runlist = lappend_oid(runlist, item->fnoid);
621  }
622  }
623 
624  /* don't spend any more time on this if no functions to run */
625  if (runlist == NIL)
626  return NIL;
627 
628  trigdata->type = T_EventTriggerData;
629  trigdata->event = eventstr;
630  trigdata->parsetree = parsetree;
631  trigdata->tag = tag;
632 
633  return runlist;
634 }
bool command_tag_event_trigger_ok(CommandTag commandTag)
Definition: cmdtag.c:67
bool command_tag_table_rewrite_ok(CommandTag commandTag)
Definition: cmdtag.c:73
const char * GetCommandTagName(CommandTag commandTag)
Definition: cmdtag.c:48
CommandTag
Definition: cmdtag.h:23
static bool filter_event_trigger(CommandTag tag, EventTriggerCacheItem *item)
List * EventCacheLookup(EventTriggerEvent event)
Definition: evtcache.c:64
@ EVT_SQLDrop
Definition: evtcache.h:24
@ EVT_DDLCommandEnd
Definition: evtcache.h:23
@ EVT_DDLCommandStart
Definition: evtcache.h:22
@ EVT_TableRewrite
Definition: evtcache.h:25
List * lappend_oid(List *list, Oid datum)
Definition: list.c:374
CommandTag tag
Definition: event_trigger.h:29
const char * event
Definition: event_trigger.h:27
CommandTag CreateCommandTag(Node *parsetree)
Definition: utility.c:2363

References command_tag_event_trigger_ok(), command_tag_table_rewrite_ok(), CreateCommandTag(), elog(), ERROR, EventTriggerData::event, EventCacheLookup(), EVT_DDLCommandEnd, EVT_DDLCommandStart, EVT_SQLDrop, EVT_TableRewrite, filter_event_trigger(), EventTriggerCacheItem::fnoid, GetCommandTagName(), lappend_oid(), lfirst, NIL, EventTriggerData::parsetree, EventTriggerData::tag, and EventTriggerData::type.

Referenced by EventTriggerDDLCommandEnd(), EventTriggerDDLCommandStart(), EventTriggerSQLDrop(), and EventTriggerTableRewrite().

◆ EventTriggerDDLCommandEnd()

void EventTriggerDDLCommandEnd ( Node parsetree)

Definition at line 688 of file event_trigger.c.

689 {
690  List *runlist;
691  EventTriggerData trigdata;
692 
693  /*
694  * See EventTriggerDDLCommandStart for a discussion about why event
695  * triggers are disabled in single user mode.
696  */
697  if (!IsUnderPostmaster)
698  return;
699 
700  /*
701  * Also do nothing if our state isn't set up, which it won't be if there
702  * weren't any relevant event triggers at the start of the current DDL
703  * command. This test might therefore seem optional, but it's important
704  * because EventTriggerCommonSetup might find triggers that didn't exist
705  * at the time the command started. Although this function itself
706  * wouldn't crash, the event trigger functions would presumably call
707  * pg_event_trigger_ddl_commands which would fail. Better to do nothing
708  * until the next command.
709  */
711  return;
712 
713  runlist = EventTriggerCommonSetup(parsetree,
714  EVT_DDLCommandEnd, "ddl_command_end",
715  &trigdata);
716  if (runlist == NIL)
717  return;
718 
719  /*
720  * Make sure anything the main command did will be visible to the event
721  * triggers.
722  */
724 
725  /* Run the triggers. */
726  EventTriggerInvoke(runlist, &trigdata);
727 
728  /* Cleanup. */
729  list_free(runlist);
730 }
static List * EventTriggerCommonSetup(Node *parsetree, EventTriggerEvent event, const char *eventstr, EventTriggerData *trigdata)
static void EventTriggerInvoke(List *fn_oid_list, EventTriggerData *trigdata)
bool IsUnderPostmaster
Definition: globals.c:113
void list_free(List *list)
Definition: list.c:1545
void CommandCounterIncrement(void)
Definition: xact.c:1078

References CommandCounterIncrement(), currentEventTriggerState, EventTriggerCommonSetup(), EventTriggerInvoke(), EVT_DDLCommandEnd, IsUnderPostmaster, list_free(), and NIL.

Referenced by ProcessUtilitySlow().

◆ EventTriggerDDLCommandStart()

void EventTriggerDDLCommandStart ( Node parsetree)

Definition at line 640 of file event_trigger.c.

641 {
642  List *runlist;
643  EventTriggerData trigdata;
644 
645  /*
646  * Event Triggers are completely disabled in standalone mode. There are
647  * (at least) two reasons for this:
648  *
649  * 1. A sufficiently broken event trigger might not only render the
650  * database unusable, but prevent disabling itself to fix the situation.
651  * In this scenario, restarting in standalone mode provides an escape
652  * hatch.
653  *
654  * 2. BuildEventTriggerCache relies on systable_beginscan_ordered, and
655  * therefore will malfunction if pg_event_trigger's indexes are damaged.
656  * To allow recovery from a damaged index, we need some operating mode
657  * wherein event triggers are disabled. (Or we could implement
658  * heapscan-and-sort logic for that case, but having disaster recovery
659  * scenarios depend on code that's otherwise untested isn't appetizing.)
660  */
661  if (!IsUnderPostmaster)
662  return;
663 
664  runlist = EventTriggerCommonSetup(parsetree,
666  "ddl_command_start",
667  &trigdata);
668  if (runlist == NIL)
669  return;
670 
671  /* Run the triggers. */
672  EventTriggerInvoke(runlist, &trigdata);
673 
674  /* Cleanup. */
675  list_free(runlist);
676 
677  /*
678  * Make sure anything the event triggers did will be visible to the main
679  * command.
680  */
682 }

References CommandCounterIncrement(), EventTriggerCommonSetup(), EventTriggerInvoke(), EVT_DDLCommandStart, IsUnderPostmaster, list_free(), and NIL.

Referenced by ProcessUtilitySlow().

◆ EventTriggerEndCompleteQuery()

void EventTriggerEndCompleteQuery ( void  )

Definition at line 1123 of file event_trigger.c.

1124 {
1125  EventTriggerQueryState *prevstate;
1126 
1127  prevstate = currentEventTriggerState->previous;
1128 
1129  /* this avoids the need for retail pfree of SQLDropList items: */
1131 
1132  currentEventTriggerState = prevstate;
1133 }
void MemoryContextDelete(MemoryContext context)
Definition: mcxt.c:387
struct EventTriggerQueryState * previous
Definition: event_trigger.c:70

References currentEventTriggerState, EventTriggerQueryState::cxt, MemoryContextDelete(), and EventTriggerQueryState::previous.

Referenced by ProcessUtilitySlow().

◆ EventTriggerInhibitCommandCollection()

void EventTriggerInhibitCommandCollection ( void  )

Definition at line 1449 of file event_trigger.c.

1450 {
1452  return;
1453 
1455 }

References EventTriggerQueryState::commandCollectionInhibited, and currentEventTriggerState.

Referenced by ProcessUtilitySlow().

◆ EventTriggerInvoke()

static void EventTriggerInvoke ( List fn_oid_list,
EventTriggerData trigdata 
)
static

Definition at line 872 of file event_trigger.c.

873 {
874  MemoryContext context;
875  MemoryContext oldcontext;
876  ListCell *lc;
877  bool first = true;
878 
879  /* Guard against stack overflow due to recursive event trigger */
881 
882  /*
883  * Let's evaluate event triggers in their own memory context, so that any
884  * leaks get cleaned up promptly.
885  */
887  "event trigger context",
889  oldcontext = MemoryContextSwitchTo(context);
890 
891  /* Call each event trigger. */
892  foreach(lc, fn_oid_list)
893  {
894  LOCAL_FCINFO(fcinfo, 0);
895  Oid fnoid = lfirst_oid(lc);
896  FmgrInfo flinfo;
897  PgStat_FunctionCallUsage fcusage;
898 
899  elog(DEBUG1, "EventTriggerInvoke %u", fnoid);
900 
901  /*
902  * We want each event trigger to be able to see the results of the
903  * previous event trigger's action. Caller is responsible for any
904  * command-counter increment that is needed between the event trigger
905  * and anything else in the transaction.
906  */
907  if (first)
908  first = false;
909  else
911 
912  /* Look up the function */
913  fmgr_info(fnoid, &flinfo);
914 
915  /* Call the function, passing no arguments but setting a context. */
916  InitFunctionCallInfoData(*fcinfo, &flinfo, 0,
917  InvalidOid, (Node *) trigdata, NULL);
918  pgstat_init_function_usage(fcinfo, &fcusage);
919  FunctionCallInvoke(fcinfo);
920  pgstat_end_function_usage(&fcusage, true);
921 
922  /* Reclaim memory. */
923  MemoryContextReset(context);
924  }
925 
926  /* Restore old memory context and delete the temporary one. */
927  MemoryContextSwitchTo(oldcontext);
928  MemoryContextDelete(context);
929 }
#define DEBUG1
Definition: elog.h:30
void fmgr_info(Oid functionId, FmgrInfo *finfo)
Definition: fmgr.c:127
#define InitFunctionCallInfoData(Fcinfo, Flinfo, Nargs, Collation, Context, Resultinfo)
Definition: fmgr.h:150
#define LOCAL_FCINFO(name, nargs)
Definition: fmgr.h:110
#define FunctionCallInvoke(fcinfo)
Definition: fmgr.h:172
void MemoryContextReset(MemoryContext context)
Definition: mcxt.c:314
MemoryContext CurrentMemoryContext
Definition: mcxt.c:135
#define lfirst_oid(lc)
Definition: pg_list.h:174
void pgstat_init_function_usage(FunctionCallInfo fcinfo, PgStat_FunctionCallUsage *fcu)
void pgstat_end_function_usage(PgStat_FunctionCallUsage *fcu, bool finalize)
void check_stack_depth(void)
Definition: postgres.c:3461
Definition: fmgr.h:57

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, check_stack_depth(), CommandCounterIncrement(), CurrentMemoryContext, DEBUG1, elog(), fmgr_info(), FunctionCallInvoke, InitFunctionCallInfoData, InvalidOid, lfirst_oid, LOCAL_FCINFO, MemoryContextDelete(), MemoryContextReset(), MemoryContextSwitchTo(), pgstat_end_function_usage(), and pgstat_init_function_usage().

Referenced by EventTriggerDDLCommandEnd(), EventTriggerDDLCommandStart(), EventTriggerSQLDrop(), and EventTriggerTableRewrite().

◆ EventTriggerSQLDrop()

void EventTriggerSQLDrop ( Node parsetree)

Definition at line 736 of file event_trigger.c.

737 {
738  List *runlist;
739  EventTriggerData trigdata;
740 
741  /*
742  * See EventTriggerDDLCommandStart for a discussion about why event
743  * triggers are disabled in single user mode.
744  */
745  if (!IsUnderPostmaster)
746  return;
747 
748  /*
749  * Use current state to determine whether this event fires at all. If
750  * there are no triggers for the sql_drop event, then we don't have
751  * anything to do here. Note that dropped object collection is disabled
752  * if this is the case, so even if we were to try to run, the list would
753  * be empty.
754  */
757  return;
758 
759  runlist = EventTriggerCommonSetup(parsetree,
760  EVT_SQLDrop, "sql_drop",
761  &trigdata);
762 
763  /*
764  * Nothing to do if run list is empty. Note this typically can't happen,
765  * because if there are no sql_drop events, then objects-to-drop wouldn't
766  * have been collected in the first place and we would have quit above.
767  * But it could occur if event triggers were dropped partway through.
768  */
769  if (runlist == NIL)
770  return;
771 
772  /*
773  * Make sure anything the main command did will be visible to the event
774  * triggers.
775  */
777 
778  /*
779  * Make sure pg_event_trigger_dropped_objects only works when running
780  * these triggers. Use PG_TRY to ensure in_sql_drop is reset even when
781  * one trigger fails. (This is perhaps not necessary, as the currentState
782  * variable will be removed shortly by our caller, but it seems better to
783  * play safe.)
784  */
786 
787  /* Run the triggers. */
788  PG_TRY();
789  {
790  EventTriggerInvoke(runlist, &trigdata);
791  }
792  PG_FINALLY();
793  {
795  }
796  PG_END_TRY();
797 
798  /* Cleanup. */
799  list_free(runlist);
800 }
#define PG_TRY(...)
Definition: elog.h:370
#define PG_END_TRY(...)
Definition: elog.h:395
#define PG_FINALLY(...)
Definition: elog.h:387
static bool slist_is_empty(const slist_head *head)
Definition: ilist.h:995

References CommandCounterIncrement(), currentEventTriggerState, EventTriggerCommonSetup(), EventTriggerInvoke(), EVT_SQLDrop, EventTriggerQueryState::in_sql_drop, IsUnderPostmaster, list_free(), NIL, PG_END_TRY, PG_FINALLY, PG_TRY, slist_is_empty(), and EventTriggerQueryState::SQLDropList.

Referenced by ProcessUtilitySlow().

◆ EventTriggerSQLDropAddObject()

void EventTriggerSQLDropAddObject ( const ObjectAddress object,
bool  original,
bool  normal 
)

Definition at line 1173 of file event_trigger.c.

1174 {
1175  SQLDropObject *obj;
1176  MemoryContext oldcxt;
1177 
1179  return;
1180 
1182 
1183  /* don't report temp schemas except my own */
1184  if (object->classId == NamespaceRelationId &&
1185  (isAnyTempNamespace(object->objectId) &&
1186  !isTempNamespace(object->objectId)))
1187  return;
1188 
1190 
1191  obj = palloc0(sizeof(SQLDropObject));
1192  obj->address = *object;
1193  obj->original = original;
1194  obj->normal = normal;
1195 
1196  /*
1197  * Obtain schema names from the object's catalog tuple, if one exists;
1198  * this lets us skip objects in temp schemas. We trust that
1199  * ObjectProperty contains all object classes that can be
1200  * schema-qualified.
1201  */
1202  if (is_objectclass_supported(object->classId))
1203  {
1204  Relation catalog;
1205  HeapTuple tuple;
1206 
1207  catalog = table_open(obj->address.classId, AccessShareLock);
1208  tuple = get_catalog_object_by_oid(catalog,
1209  get_object_attnum_oid(object->classId),
1210  obj->address.objectId);
1211 
1212  if (tuple)
1213  {
1215  Datum datum;
1216  bool isnull;
1217 
1219  if (attnum != InvalidAttrNumber)
1220  {
1221  datum = heap_getattr(tuple, attnum,
1222  RelationGetDescr(catalog), &isnull);
1223  if (!isnull)
1224  {
1225  Oid namespaceId;
1226 
1227  namespaceId = DatumGetObjectId(datum);
1228  /* temp objects are only reported if they are my own */
1229  if (isTempNamespace(namespaceId))
1230  {
1231  obj->schemaname = "pg_temp";
1232  obj->istemp = true;
1233  }
1234  else if (isAnyTempNamespace(namespaceId))
1235  {
1236  pfree(obj);
1237  table_close(catalog, AccessShareLock);
1238  MemoryContextSwitchTo(oldcxt);
1239  return;
1240  }
1241  else
1242  {
1243  obj->schemaname = get_namespace_name(namespaceId);
1244  obj->istemp = false;
1245  }
1246  }
1247  }
1248 
1250  obj->address.objectSubId == 0)
1251  {
1253  if (attnum != InvalidAttrNumber)
1254  {
1255  datum = heap_getattr(tuple, attnum,
1256  RelationGetDescr(catalog), &isnull);
1257  if (!isnull)
1258  obj->objname = pstrdup(NameStr(*DatumGetName(datum)));
1259  }
1260  }
1261  }
1262 
1263  table_close(catalog, AccessShareLock);
1264  }
1265  else
1266  {
1267  if (object->classId == NamespaceRelationId &&
1268  isTempNamespace(object->objectId))
1269  obj->istemp = true;
1270  }
1271 
1272  /* object identity, objname and objargs */
1273  obj->objidentity =
1274  getObjectIdentityParts(&obj->address, &obj->addrnames, &obj->addrargs,
1275  false);
1276 
1277  /* object type */
1278  obj->objecttype = getObjectTypeDescription(&obj->address, false);
1279 
1281 
1282  MemoryContextSwitchTo(oldcxt);
1283 }
int16 AttrNumber
Definition: attnum.h:21
#define InvalidAttrNumber
Definition: attnum.h:23
ObjectClass getObjectClass(const ObjectAddress *object)
Definition: dependency.c:2836
bool EventTriggerSupportsObjectClass(ObjectClass objclass)
static Datum heap_getattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
Definition: htup_details.h:792
static void slist_push_head(slist_head *head, slist_node *node)
Definition: ilist.h:1006
#define AccessShareLock
Definition: lockdefs.h:36
char * get_namespace_name(Oid nspid)
Definition: lsyscache.c:3324
char * pstrdup(const char *in)
Definition: mcxt.c:1624
bool isTempNamespace(Oid namespaceId)
Definition: namespace.c:3200
bool isAnyTempNamespace(Oid namespaceId)
Definition: namespace.c:3238
bool get_object_namensp_unique(Oid class_id)
HeapTuple get_catalog_object_by_oid(Relation catalog, AttrNumber oidcol, Oid objectId)
AttrNumber get_object_attnum_oid(Oid class_id)
AttrNumber get_object_attnum_namespace(Oid class_id)
AttrNumber get_object_attnum_name(Oid class_id)
char * getObjectTypeDescription(const ObjectAddress *object, bool missing_ok)
char * getObjectIdentityParts(const ObjectAddress *object, List **objname, List **objargs, bool missing_ok)
bool is_objectclass_supported(Oid class_id)
int16 attnum
Definition: pg_attribute.h:74
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
#define RelationGetDescr(relation)
Definition: rel.h:529
ObjectAddress address
Definition: event_trigger.c:78
const char * schemaname
Definition: event_trigger.c:79
slist_node next
Definition: event_trigger.c:88
const char * objidentity
Definition: event_trigger.c:81
const char * objecttype
Definition: event_trigger.c:82
List * addrnames
Definition: event_trigger.c:83
const char * objname
Definition: event_trigger.c:80

References AccessShareLock, SQLDropObject::addrargs, SQLDropObject::address, SQLDropObject::addrnames, Assert(), attnum, ObjectAddress::classId, currentEventTriggerState, EventTriggerQueryState::cxt, DatumGetName(), DatumGetObjectId(), EventTriggerSupportsObjectClass(), get_catalog_object_by_oid(), get_namespace_name(), get_object_attnum_name(), get_object_attnum_namespace(), get_object_attnum_oid(), get_object_namensp_unique(), getObjectClass(), getObjectIdentityParts(), getObjectTypeDescription(), heap_getattr(), InvalidAttrNumber, is_objectclass_supported(), isAnyTempNamespace(), SQLDropObject::istemp, isTempNamespace(), MemoryContextSwitchTo(), NameStr, SQLDropObject::next, SQLDropObject::normal, ObjectAddress::objectId, ObjectAddress::objectSubId, SQLDropObject::objecttype, SQLDropObject::objidentity, SQLDropObject::objname, SQLDropObject::original, palloc0(), pfree(), pstrdup(), RelationGetDescr, SQLDropObject::schemaname, slist_push_head(), EventTriggerQueryState::SQLDropList, table_close(), and table_open().

Referenced by deleteObjectsInList(), and DropSubscription().

◆ EventTriggerSupportsObjectClass()

bool EventTriggerSupportsObjectClass ( ObjectClass  objclass)

Definition at line 1011 of file event_trigger.c.

1012 {
1013  switch (objclass)
1014  {
1015  case OCLASS_DATABASE:
1016  case OCLASS_TBLSPACE:
1017  case OCLASS_ROLE:
1019  case OCLASS_PARAMETER_ACL:
1020  /* no support for global objects */
1021  return false;
1022  case OCLASS_EVENT_TRIGGER:
1023  /* no support for event triggers on event triggers */
1024  return false;
1025  case OCLASS_CLASS:
1026  case OCLASS_PROC:
1027  case OCLASS_TYPE:
1028  case OCLASS_CAST:
1029  case OCLASS_COLLATION:
1030  case OCLASS_CONSTRAINT:
1031  case OCLASS_CONVERSION:
1032  case OCLASS_DEFAULT:
1033  case OCLASS_LANGUAGE:
1034  case OCLASS_LARGEOBJECT:
1035  case OCLASS_OPERATOR:
1036  case OCLASS_OPCLASS:
1037  case OCLASS_OPFAMILY:
1038  case OCLASS_AM:
1039  case OCLASS_AMOP:
1040  case OCLASS_AMPROC:
1041  case OCLASS_REWRITE:
1042  case OCLASS_TRIGGER:
1043  case OCLASS_SCHEMA:
1044  case OCLASS_STATISTIC_EXT:
1045  case OCLASS_TSPARSER:
1046  case OCLASS_TSDICT:
1047  case OCLASS_TSTEMPLATE:
1048  case OCLASS_TSCONFIG:
1049  case OCLASS_FDW:
1050  case OCLASS_FOREIGN_SERVER:
1051  case OCLASS_USER_MAPPING:
1052  case OCLASS_DEFACL:
1053  case OCLASS_EXTENSION:
1054  case OCLASS_POLICY:
1055  case OCLASS_PUBLICATION:
1058  case OCLASS_SUBSCRIPTION:
1059  case OCLASS_TRANSFORM:
1060  return true;
1061 
1062  /*
1063  * There's intentionally no default: case here; we want the
1064  * compiler to warn if a new OCLASS hasn't been handled above.
1065  */
1066  }
1067 
1068  /* Shouldn't get here, but if we do, say "no support" */
1069  return false;
1070 }
@ OCLASS_OPERATOR
Definition: dependency.h:100
@ OCLASS_PARAMETER_ACL
Definition: dependency.h:124
@ OCLASS_LARGEOBJECT
Definition: dependency.h:99
@ OCLASS_FDW
Definition: dependency.h:118
@ OCLASS_OPFAMILY
Definition: dependency.h:102
@ OCLASS_DEFACL
Definition: dependency.h:121
@ OCLASS_TSPARSER
Definition: dependency.h:110
@ OCLASS_TRIGGER
Definition: dependency.h:107
@ OCLASS_DEFAULT
Definition: dependency.h:97
@ OCLASS_TSTEMPLATE
Definition: dependency.h:112
@ OCLASS_AMPROC
Definition: dependency.h:105
@ OCLASS_TBLSPACE
Definition: dependency.h:117
@ OCLASS_TSCONFIG
Definition: dependency.h:113
@ OCLASS_TYPE
Definition: dependency.h:92
@ OCLASS_LANGUAGE
Definition: dependency.h:98
@ OCLASS_CAST
Definition: dependency.h:93
@ OCLASS_SUBSCRIPTION
Definition: dependency.h:129
@ OCLASS_PUBLICATION_NAMESPACE
Definition: dependency.h:127
@ OCLASS_EXTENSION
Definition: dependency.h:122
@ OCLASS_COLLATION
Definition: dependency.h:94
@ OCLASS_FOREIGN_SERVER
Definition: dependency.h:119
@ OCLASS_REWRITE
Definition: dependency.h:106
@ OCLASS_STATISTIC_EXT
Definition: dependency.h:109
@ OCLASS_PROC
Definition: dependency.h:91
@ OCLASS_OPCLASS
Definition: dependency.h:101
@ OCLASS_CONVERSION
Definition: dependency.h:96
@ OCLASS_DATABASE
Definition: dependency.h:116
@ OCLASS_ROLE_MEMBERSHIP
Definition: dependency.h:115
@ OCLASS_SCHEMA
Definition: dependency.h:108
@ OCLASS_EVENT_TRIGGER
Definition: dependency.h:123
@ OCLASS_CLASS
Definition: dependency.h:90
@ OCLASS_TRANSFORM
Definition: dependency.h:130
@ OCLASS_ROLE
Definition: dependency.h:114
@ OCLASS_CONSTRAINT
Definition: dependency.h:95
@ OCLASS_POLICY
Definition: dependency.h:125
@ OCLASS_USER_MAPPING
Definition: dependency.h:120
@ OCLASS_PUBLICATION_REL
Definition: dependency.h:128
@ OCLASS_AM
Definition: dependency.h:103
@ OCLASS_TSDICT
Definition: dependency.h:111
@ OCLASS_PUBLICATION
Definition: dependency.h:126
@ OCLASS_AMOP
Definition: dependency.h:104

References OCLASS_AM, OCLASS_AMOP, OCLASS_AMPROC, OCLASS_CAST, OCLASS_CLASS, OCLASS_COLLATION, OCLASS_CONSTRAINT, OCLASS_CONVERSION, OCLASS_DATABASE, OCLASS_DEFACL, OCLASS_DEFAULT, OCLASS_EVENT_TRIGGER, OCLASS_EXTENSION, OCLASS_FDW, OCLASS_FOREIGN_SERVER, OCLASS_LANGUAGE, OCLASS_LARGEOBJECT, OCLASS_OPCLASS, OCLASS_OPERATOR, OCLASS_OPFAMILY, OCLASS_PARAMETER_ACL, OCLASS_POLICY, OCLASS_PROC, OCLASS_PUBLICATION, OCLASS_PUBLICATION_NAMESPACE, OCLASS_PUBLICATION_REL, OCLASS_REWRITE, OCLASS_ROLE, OCLASS_ROLE_MEMBERSHIP, OCLASS_SCHEMA, OCLASS_STATISTIC_EXT, OCLASS_SUBSCRIPTION, OCLASS_TBLSPACE, OCLASS_TRANSFORM, OCLASS_TRIGGER, OCLASS_TSCONFIG, OCLASS_TSDICT, OCLASS_TSPARSER, OCLASS_TSTEMPLATE, OCLASS_TYPE, and OCLASS_USER_MAPPING.

Referenced by deleteObjectsInList(), and EventTriggerSQLDropAddObject().

◆ EventTriggerSupportsObjectType()

bool EventTriggerSupportsObjectType ( ObjectType  obtype)

Definition at line 935 of file event_trigger.c.

936 {
937  switch (obtype)
938  {
939  case OBJECT_DATABASE:
940  case OBJECT_TABLESPACE:
941  case OBJECT_ROLE:
943  /* no support for global objects */
944  return false;
946  /* no support for event triggers on event triggers */
947  return false;
949  case OBJECT_AGGREGATE:
950  case OBJECT_AMOP:
951  case OBJECT_AMPROC:
952  case OBJECT_ATTRIBUTE:
953  case OBJECT_CAST:
954  case OBJECT_COLUMN:
955  case OBJECT_COLLATION:
956  case OBJECT_CONVERSION:
957  case OBJECT_DEFACL:
958  case OBJECT_DEFAULT:
959  case OBJECT_DOMAIN:
961  case OBJECT_EXTENSION:
962  case OBJECT_FDW:
965  case OBJECT_FUNCTION:
966  case OBJECT_INDEX:
967  case OBJECT_LANGUAGE:
968  case OBJECT_LARGEOBJECT:
969  case OBJECT_MATVIEW:
970  case OBJECT_OPCLASS:
971  case OBJECT_OPERATOR:
972  case OBJECT_OPFAMILY:
973  case OBJECT_POLICY:
974  case OBJECT_PROCEDURE:
975  case OBJECT_PUBLICATION:
978  case OBJECT_ROUTINE:
979  case OBJECT_RULE:
980  case OBJECT_SCHEMA:
981  case OBJECT_SEQUENCE:
982  case OBJECT_SUBSCRIPTION:
985  case OBJECT_TABLE:
986  case OBJECT_TRANSFORM:
987  case OBJECT_TRIGGER:
989  case OBJECT_TSDICTIONARY:
990  case OBJECT_TSPARSER:
991  case OBJECT_TSTEMPLATE:
992  case OBJECT_TYPE:
993  case OBJECT_USER_MAPPING:
994  case OBJECT_VIEW:
995  return true;
996 
997  /*
998  * There's intentionally no default: case here; we want the
999  * compiler to warn if a new ObjectType hasn't been handled above.
1000  */
1001  }
1002 
1003  /* Shouldn't get here, but if we do, say "no support" */
1004  return false;
1005 }
@ OBJECT_FDW
Definition: parsenodes.h:2098
@ OBJECT_TSPARSER
Definition: parsenodes.h:2129
@ OBJECT_COLLATION
Definition: parsenodes.h:2089
@ OBJECT_USER_MAPPING
Definition: parsenodes.h:2132
@ OBJECT_ACCESS_METHOD
Definition: parsenodes.h:2082
@ OBJECT_OPCLASS
Definition: parsenodes.h:2106
@ OBJECT_DEFACL
Definition: parsenodes.h:2093
@ OBJECT_AGGREGATE
Definition: parsenodes.h:2083
@ OBJECT_MATVIEW
Definition: parsenodes.h:2105
@ OBJECT_SCHEMA
Definition: parsenodes.h:2118
@ OBJECT_POLICY
Definition: parsenodes.h:2110
@ OBJECT_OPERATOR
Definition: parsenodes.h:2107
@ OBJECT_FOREIGN_TABLE
Definition: parsenodes.h:2100
@ OBJECT_TSCONFIGURATION
Definition: parsenodes.h:2127
@ OBJECT_OPFAMILY
Definition: parsenodes.h:2108
@ OBJECT_DOMAIN
Definition: parsenodes.h:2094
@ OBJECT_COLUMN
Definition: parsenodes.h:2088
@ OBJECT_TABLESPACE
Definition: parsenodes.h:2124
@ OBJECT_ROLE
Definition: parsenodes.h:2115
@ OBJECT_ROUTINE
Definition: parsenodes.h:2116
@ OBJECT_LARGEOBJECT
Definition: parsenodes.h:2104
@ OBJECT_PUBLICATION_NAMESPACE
Definition: parsenodes.h:2113
@ OBJECT_PROCEDURE
Definition: parsenodes.h:2111
@ OBJECT_EXTENSION
Definition: parsenodes.h:2097
@ OBJECT_INDEX
Definition: parsenodes.h:2102
@ OBJECT_DEFAULT
Definition: parsenodes.h:2092
@ OBJECT_DATABASE
Definition: parsenodes.h:2091
@ OBJECT_SEQUENCE
Definition: parsenodes.h:2119
@ OBJECT_TSTEMPLATE
Definition: parsenodes.h:2130
@ OBJECT_LANGUAGE
Definition: parsenodes.h:2103
@ OBJECT_AMOP
Definition: parsenodes.h:2084
@ OBJECT_PUBLICATION_REL
Definition: parsenodes.h:2114
@ OBJECT_FOREIGN_SERVER
Definition: parsenodes.h:2099
@ OBJECT_TSDICTIONARY
Definition: parsenodes.h:2128
@ OBJECT_ATTRIBUTE
Definition: parsenodes.h:2086
@ OBJECT_PUBLICATION
Definition: parsenodes.h:2112
@ OBJECT_RULE
Definition: parsenodes.h:2117
@ OBJECT_CONVERSION
Definition: parsenodes.h:2090
@ OBJECT_AMPROC
Definition: parsenodes.h:2085
@ OBJECT_TABLE
Definition: parsenodes.h:2123
@ OBJECT_VIEW
Definition: parsenodes.h:2133
@ OBJECT_PARAMETER_ACL
Definition: parsenodes.h:2109
@ OBJECT_TYPE
Definition: parsenodes.h:2131
@ OBJECT_FUNCTION
Definition: parsenodes.h:2101
@ OBJECT_TABCONSTRAINT
Definition: parsenodes.h:2122
@ OBJECT_DOMCONSTRAINT
Definition: parsenodes.h:2095
@ OBJECT_SUBSCRIPTION
Definition: parsenodes.h:2120
@ OBJECT_STATISTIC_EXT
Definition: parsenodes.h:2121
@ OBJECT_CAST
Definition: parsenodes.h:2087
@ OBJECT_TRIGGER
Definition: parsenodes.h:2126
@ OBJECT_TRANSFORM
Definition: parsenodes.h:2125

References OBJECT_ACCESS_METHOD, OBJECT_AGGREGATE, OBJECT_AMOP, OBJECT_AMPROC, OBJECT_ATTRIBUTE, OBJECT_CAST, OBJECT_COLLATION, OBJECT_COLUMN, OBJECT_CONVERSION, OBJECT_DATABASE, OBJECT_DEFACL, OBJECT_DEFAULT, OBJECT_DOMAIN, OBJECT_DOMCONSTRAINT, OBJECT_EVENT_TRIGGER, OBJECT_EXTENSION, OBJECT_FDW, OBJECT_FOREIGN_SERVER, OBJECT_FOREIGN_TABLE, OBJECT_FUNCTION, OBJECT_INDEX, OBJECT_LANGUAGE, OBJECT_LARGEOBJECT, OBJECT_MATVIEW, OBJECT_OPCLASS, OBJECT_OPERATOR, OBJECT_OPFAMILY, OBJECT_PARAMETER_ACL, OBJECT_POLICY, OBJECT_PROCEDURE, OBJECT_PUBLICATION, OBJECT_PUBLICATION_NAMESPACE, OBJECT_PUBLICATION_REL, OBJECT_ROLE, OBJECT_ROUTINE, OBJECT_RULE, OBJECT_SCHEMA, OBJECT_SEQUENCE, OBJECT_STATISTIC_EXT, OBJECT_SUBSCRIPTION, OBJECT_TABCONSTRAINT, OBJECT_TABLE, OBJECT_TABLESPACE, OBJECT_TRANSFORM, OBJECT_TRIGGER, OBJECT_TSCONFIGURATION, OBJECT_TSDICTIONARY, OBJECT_TSPARSER, OBJECT_TSTEMPLATE, OBJECT_TYPE, OBJECT_USER_MAPPING, and OBJECT_VIEW.

Referenced by ExecGrantStmt_oids(), and standard_ProcessUtility().

◆ EventTriggerTableRewrite()

void EventTriggerTableRewrite ( Node parsetree,
Oid  tableOid,
int  reason 
)

Definition at line 807 of file event_trigger.c.

808 {
809  List *runlist;
810  EventTriggerData trigdata;
811 
812  /*
813  * See EventTriggerDDLCommandStart for a discussion about why event
814  * triggers are disabled in single user mode.
815  */
816  if (!IsUnderPostmaster)
817  return;
818 
819  /*
820  * Also do nothing if our state isn't set up, which it won't be if there
821  * weren't any relevant event triggers at the start of the current DDL
822  * command. This test might therefore seem optional, but it's
823  * *necessary*, because EventTriggerCommonSetup might find triggers that
824  * didn't exist at the time the command started.
825  */
827  return;
828 
829  runlist = EventTriggerCommonSetup(parsetree,
831  "table_rewrite",
832  &trigdata);
833  if (runlist == NIL)
834  return;
835 
836  /*
837  * Make sure pg_event_trigger_table_rewrite_oid only works when running
838  * these triggers. Use PG_TRY to ensure table_rewrite_oid is reset even
839  * when one trigger fails. (This is perhaps not necessary, as the
840  * currentState variable will be removed shortly by our caller, but it
841  * seems better to play safe.)
842  */
845 
846  /* Run the triggers. */
847  PG_TRY();
848  {
849  EventTriggerInvoke(runlist, &trigdata);
850  }
851  PG_FINALLY();
852  {
855  }
856  PG_END_TRY();
857 
858  /* Cleanup. */
859  list_free(runlist);
860 
861  /*
862  * Make sure anything the event triggers did will be visible to the main
863  * command.
864  */
866 }

References CommandCounterIncrement(), currentEventTriggerState, EventTriggerCommonSetup(), EventTriggerInvoke(), EVT_TableRewrite, InvalidOid, IsUnderPostmaster, list_free(), NIL, PG_END_TRY, PG_FINALLY, PG_TRY, EventTriggerQueryState::table_rewrite_oid, and EventTriggerQueryState::table_rewrite_reason.

Referenced by ATRewriteTables().

◆ EventTriggerUndoInhibitCommandCollection()

void EventTriggerUndoInhibitCommandCollection ( void  )

Definition at line 1461 of file event_trigger.c.

1462 {
1464  return;
1465 
1467 }

References EventTriggerQueryState::commandCollectionInhibited, and currentEventTriggerState.

Referenced by ProcessUtilitySlow().

◆ filter_event_trigger()

static bool filter_event_trigger ( CommandTag  tag,
EventTriggerCacheItem item 
)
static

Definition at line 524 of file event_trigger.c.

525 {
526  /*
527  * Filter by session replication role, knowing that we never see disabled
528  * items down here.
529  */
531  {
532  if (item->enabled == TRIGGER_FIRES_ON_ORIGIN)
533  return false;
534  }
535  else
536  {
537  if (item->enabled == TRIGGER_FIRES_ON_REPLICA)
538  return false;
539  }
540 
541  /* Filter by tags, if any were specified. */
542  if (!bms_is_empty(item->tagset) && !bms_is_member(tag, item->tagset))
543  return false;
544 
545  /* if we reach that point, we're not filtering out this item */
546  return true;
547 }
bool bms_is_member(int x, const Bitmapset *a)
Definition: bitmapset.c:444
#define bms_is_empty(a)
Definition: bitmapset.h:105
Bitmapset * tagset
Definition: evtcache.h:32
int SessionReplicationRole
Definition: trigger.c:70
#define SESSION_REPLICATION_ROLE_REPLICA
Definition: trigger.h:141
#define TRIGGER_FIRES_ON_ORIGIN
Definition: trigger.h:149
#define TRIGGER_FIRES_ON_REPLICA
Definition: trigger.h:151

References bms_is_empty, bms_is_member(), EventTriggerCacheItem::enabled, SESSION_REPLICATION_ROLE_REPLICA, SessionReplicationRole, EventTriggerCacheItem::tagset, TRIGGER_FIRES_ON_ORIGIN, and TRIGGER_FIRES_ON_REPLICA.

Referenced by EventTriggerCommonSetup().

◆ filter_list_to_array()

static Datum filter_list_to_array ( List filterlist)
static

Definition at line 332 of file event_trigger.c.

333 {
334  ListCell *lc;
335  Datum *data;
336  int i = 0,
337  l = list_length(filterlist);
338 
339  data = (Datum *) palloc(l * sizeof(Datum));
340 
341  foreach(lc, filterlist)
342  {
343  const char *value = strVal(lfirst(lc));
344  char *result,
345  *p;
346 
347  result = pstrdup(value);
348  for (p = result; *p; p++)
349  *p = pg_ascii_toupper((unsigned char) *p);
350  data[i++] = PointerGetDatum(cstring_to_text(result));
351  pfree(result);
352  }
353 
354  return PointerGetDatum(construct_array_builtin(data, l, TEXTOID));
355 }
ArrayType * construct_array_builtin(Datum *elems, int nelems, Oid elmtype)
Definition: arrayfuncs.c:3361
static struct @146 value
int i
Definition: isn.c:73
const void * data
static int list_length(const List *l)
Definition: pg_list.h:152
unsigned char pg_ascii_toupper(unsigned char ch)
Definition: pgstrcasecmp.c:135
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
#define strVal(v)
Definition: value.h:82
text * cstring_to_text(const char *s)
Definition: varlena.c:182

References construct_array_builtin(), cstring_to_text(), data, i, lfirst, list_length(), palloc(), pfree(), pg_ascii_toupper(), PointerGetDatum(), pstrdup(), strVal, and value.

Referenced by insert_event_trigger_tuple().

◆ get_event_trigger_oid()

Oid get_event_trigger_oid ( const char *  trigname,
bool  missing_ok 
)

Definition at line 505 of file event_trigger.c.

506 {
507  Oid oid;
508 
509  oid = GetSysCacheOid1(EVENTTRIGGERNAME, Anum_pg_event_trigger_oid,
510  CStringGetDatum(trigname));
511  if (!OidIsValid(oid) && !missing_ok)
512  ereport(ERROR,
513  (errcode(ERRCODE_UNDEFINED_OBJECT),
514  errmsg("event trigger \"%s\" does not exist", trigname)));
515  return oid;
516 }
#define GetSysCacheOid1(cacheId, oidcol, key1)
Definition: syscache.h:200

References CStringGetDatum(), ereport, errcode(), errmsg(), ERROR, EVENTTRIGGERNAME, GetSysCacheOid1, and OidIsValid.

Referenced by get_object_address_unqualified().

◆ insert_event_trigger_tuple()

static Oid insert_event_trigger_tuple ( const char *  trigname,
const char *  eventname,
Oid  evtOwner,
Oid  funcoid,
List taglist 
)
static

Definition at line 256 of file event_trigger.c.

258 {
259  Relation tgrel;
260  Oid trigoid;
261  HeapTuple tuple;
262  Datum values[Natts_pg_trigger];
263  bool nulls[Natts_pg_trigger];
264  NameData evtnamedata,
265  evteventdata;
266  ObjectAddress myself,
267  referenced;
268 
269  /* Open pg_event_trigger. */
270  tgrel = table_open(EventTriggerRelationId, RowExclusiveLock);
271 
272  /* Build the new pg_trigger tuple. */
273  trigoid = GetNewOidWithIndex(tgrel, EventTriggerOidIndexId,
274  Anum_pg_event_trigger_oid);
275  values[Anum_pg_event_trigger_oid - 1] = ObjectIdGetDatum(trigoid);
276  memset(nulls, false, sizeof(nulls));
277  namestrcpy(&evtnamedata, trigname);
278  values[Anum_pg_event_trigger_evtname - 1] = NameGetDatum(&evtnamedata);
279  namestrcpy(&evteventdata, eventname);
280  values[Anum_pg_event_trigger_evtevent - 1] = NameGetDatum(&evteventdata);
281  values[Anum_pg_event_trigger_evtowner - 1] = ObjectIdGetDatum(evtOwner);
282  values[Anum_pg_event_trigger_evtfoid - 1] = ObjectIdGetDatum(funcoid);
283  values[Anum_pg_event_trigger_evtenabled - 1] =
285  if (taglist == NIL)
286  nulls[Anum_pg_event_trigger_evttags - 1] = true;
287  else
288  values[Anum_pg_event_trigger_evttags - 1] =
289  filter_list_to_array(taglist);
290 
291  /* Insert heap tuple. */
292  tuple = heap_form_tuple(tgrel->rd_att, values, nulls);
293  CatalogTupleInsert(tgrel, tuple);
294  heap_freetuple(tuple);
295 
296  /* Depend on owner. */
297  recordDependencyOnOwner(EventTriggerRelationId, trigoid, evtOwner);
298 
299  /* Depend on event trigger function. */
300  myself.classId = EventTriggerRelationId;
301  myself.objectId = trigoid;
302  myself.objectSubId = 0;
303  referenced.classId = ProcedureRelationId;
304  referenced.objectId = funcoid;
305  referenced.objectSubId = 0;
306  recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
307 
308  /* Depend on extension, if any. */
309  recordDependencyOnCurrentExtension(&myself, false);
310 
311  /* Post creation hook for new event trigger */
312  InvokeObjectPostCreateHook(EventTriggerRelationId, trigoid, 0);
313 
314  /* Close pg_event_trigger. */
316 
317  return trigoid;
318 }
static Datum values[MAXATTR]
Definition: bootstrap.c:156
Oid GetNewOidWithIndex(Relation relation, Oid indexId, AttrNumber oidcolumn)
Definition: catalog.c:393
@ DEPENDENCY_NORMAL
Definition: dependency.h:33
static Datum filter_list_to_array(List *filterlist)
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, Datum *values, bool *isnull)
Definition: heaptuple.c:1020
void CatalogTupleInsert(Relation heapRel, HeapTuple tup)
Definition: indexing.c:233
void namestrcpy(Name name, const char *str)
Definition: name.c:233
#define InvokeObjectPostCreateHook(classId, objectId, subId)
Definition: objectaccess.h:173
void recordDependencyOn(const ObjectAddress *depender, const ObjectAddress *referenced, DependencyType behavior)
Definition: pg_depend.c:44
void recordDependencyOnCurrentExtension(const ObjectAddress *object, bool isReplace)
Definition: pg_depend.c:192
void recordDependencyOnOwner(Oid classId, Oid objectId, Oid owner)
Definition: pg_shdepend.c:165
static Datum NameGetDatum(const NameData *X)
Definition: postgres.h:373
static Datum CharGetDatum(char X)
Definition: postgres.h:122
TupleDesc rd_att
Definition: rel.h:111
Definition: c.h:725

References CatalogTupleInsert(), CharGetDatum(), ObjectAddress::classId, DEPENDENCY_NORMAL, filter_list_to_array(), GetNewOidWithIndex(), heap_form_tuple(), heap_freetuple(), InvokeObjectPostCreateHook, NameGetDatum(), namestrcpy(), NIL, ObjectAddress::objectId, ObjectIdGetDatum(), ObjectAddress::objectSubId, RelationData::rd_att, recordDependencyOn(), recordDependencyOnCurrentExtension(), recordDependencyOnOwner(), RowExclusiveLock, table_close(), table_open(), TRIGGER_FIRES_ON_ORIGIN, and values.

Referenced by CreateEventTrigger().

◆ pg_event_trigger_ddl_commands()

Datum pg_event_trigger_ddl_commands ( PG_FUNCTION_ARGS  )

Definition at line 1820 of file event_trigger.c.

1821 {
1822  ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
1823  ListCell *lc;
1824 
1825  /*
1826  * Protect this function from being called out of context
1827  */
1829  ereport(ERROR,
1830  (errcode(ERRCODE_E_R_I_E_EVENT_TRIGGER_PROTOCOL_VIOLATED),
1831  errmsg("%s can only be called in an event trigger function",
1832  "pg_event_trigger_ddl_commands()")));
1833 
1834  /* Build tuplestore to hold the result rows */
1835  InitMaterializedSRF(fcinfo, 0);
1836 
1838  {
1839  CollectedCommand *cmd = lfirst(lc);
1840  Datum values[9];
1841  bool nulls[9] = {0};
1842  ObjectAddress addr;
1843  int i = 0;
1844 
1845  /*
1846  * For IF NOT EXISTS commands that attempt to create an existing
1847  * object, the returned OID is Invalid. Don't return anything.
1848  *
1849  * One might think that a viable alternative would be to look up the
1850  * Oid of the existing object and run the deparse with that. But
1851  * since the parse tree might be different from the one that created
1852  * the object in the first place, we might not end up in a consistent
1853  * state anyway.
1854  */
1855  if (cmd->type == SCT_Simple &&
1856  !OidIsValid(cmd->d.simple.address.objectId))
1857  continue;
1858 
1859  switch (cmd->type)
1860  {
1861  case SCT_Simple:
1862  case SCT_AlterTable:
1863  case SCT_AlterOpFamily:
1864  case SCT_CreateOpClass:
1865  case SCT_AlterTSConfig:
1866  {
1867  char *identity;
1868  char *type;
1869  char *schema = NULL;
1870 
1871  if (cmd->type == SCT_Simple)
1872  addr = cmd->d.simple.address;
1873  else if (cmd->type == SCT_AlterTable)
1874  ObjectAddressSet(addr,
1875  cmd->d.alterTable.classId,
1876  cmd->d.alterTable.objectId);
1877  else if (cmd->type == SCT_AlterOpFamily)
1878  addr = cmd->d.opfam.address;
1879  else if (cmd->type == SCT_CreateOpClass)
1880  addr = cmd->d.createopc.address;
1881  else if (cmd->type == SCT_AlterTSConfig)
1882  addr = cmd->d.atscfg.address;
1883 
1884  /*
1885  * If an object was dropped in the same command we may end
1886  * up in a situation where we generated a message but can
1887  * no longer look for the object information, so skip it
1888  * rather than failing. This can happen for example with
1889  * some subcommand combinations of ALTER TABLE.
1890  */
1891  identity = getObjectIdentity(&addr, true);
1892  if (identity == NULL)
1893  continue;
1894 
1895  /* The type can never be NULL. */
1896  type = getObjectTypeDescription(&addr, true);
1897 
1898  /*
1899  * Obtain schema name, if any ("pg_temp" if a temp
1900  * object). If the object class is not in the supported
1901  * list here, we assume it's a schema-less object type,
1902  * and thus "schema" remains set to NULL.
1903  */
1905  {
1906  AttrNumber nspAttnum;
1907 
1908  nspAttnum = get_object_attnum_namespace(addr.classId);
1909  if (nspAttnum != InvalidAttrNumber)
1910  {
1911  Relation catalog;
1912  HeapTuple objtup;
1913  Oid schema_oid;
1914  bool isnull;
1915 
1916  catalog = table_open(addr.classId, AccessShareLock);
1917  objtup = get_catalog_object_by_oid(catalog,
1919  addr.objectId);
1920  if (!HeapTupleIsValid(objtup))
1921  elog(ERROR, "cache lookup failed for object %u/%u",
1922  addr.classId, addr.objectId);
1923  schema_oid =
1924  heap_getattr(objtup, nspAttnum,
1925  RelationGetDescr(catalog), &isnull);
1926  if (isnull)
1927  elog(ERROR,
1928  "invalid null namespace in object %u/%u/%d",
1929  addr.classId, addr.objectId, addr.objectSubId);
1930  schema = get_namespace_name_or_temp(schema_oid);
1931 
1932  table_close(catalog, AccessShareLock);
1933  }
1934  }
1935 
1936  /* classid */
1937  values[i++] = ObjectIdGetDatum(addr.classId);
1938  /* objid */
1939  values[i++] = ObjectIdGetDatum(addr.objectId);
1940  /* objsubid */
1941  values[i++] = Int32GetDatum(addr.objectSubId);
1942  /* command tag */
1944  /* object_type */
1946  /* schema */
1947  if (schema == NULL)
1948  nulls[i++] = true;
1949  else
1950  values[i++] = CStringGetTextDatum(schema);
1951  /* identity */
1952  values[i++] = CStringGetTextDatum(identity);
1953  /* in_extension */
1954  values[i++] = BoolGetDatum(cmd->in_extension);
1955  /* command */
1956  values[i++] = PointerGetDatum(cmd);
1957  }
1958  break;
1959 
1961  /* classid */
1962  nulls[i++] = true;
1963  /* objid */
1964  nulls[i++] = true;
1965  /* objsubid */
1966  nulls[i++] = true;
1967  /* command tag */
1969  /* object_type */
1971  /* schema */
1972  nulls[i++] = true;
1973  /* identity */
1974  nulls[i++] = true;
1975  /* in_extension */
1976  values[i++] = BoolGetDatum(cmd->in_extension);
1977  /* command */
1978  values[i++] = PointerGetDatum(cmd);
1979  break;
1980 
1981  case SCT_Grant:
1982  /* classid */
1983  nulls[i++] = true;
1984  /* objid */
1985  nulls[i++] = true;
1986  /* objsubid */
1987  nulls[i++] = true;
1988  /* command tag */
1989  values[i++] = CStringGetTextDatum(cmd->d.grant.istmt->is_grant ?
1990  "GRANT" : "REVOKE");
1991  /* object_type */
1992  values[i++] = CStringGetTextDatum(stringify_grant_objtype(cmd->d.grant.istmt->objtype));
1993  /* schema */
1994  nulls[i++] = true;
1995  /* identity */
1996  nulls[i++] = true;
1997  /* in_extension */
1998  values[i++] = BoolGetDatum(cmd->in_extension);
1999  /* command */
2000  values[i++] = PointerGetDatum(cmd);
2001  break;
2002  }
2003 
2004  tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc,
2005  values, nulls);
2006  }
2007 
2008  PG_RETURN_VOID();
2009 }
#define CStringGetTextDatum(s)
Definition: builtins.h:94
static const char * stringify_adefprivs_objtype(ObjectType objtype)
static const char * stringify_grant_objtype(ObjectType objtype)
#define PG_RETURN_VOID()
Definition: fmgr.h:349
void InitMaterializedSRF(FunctionCallInfo fcinfo, bits32 flags)
Definition: funcapi.c:76
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:77
char * get_namespace_name_or_temp(Oid nspid)
Definition: lsyscache.c:3348
char * getObjectIdentity(const ObjectAddress *object, bool missing_ok)
static Datum BoolGetDatum(bool X)
Definition: postgres.h:102
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:212
TupleDesc setDesc
Definition: execnodes.h:334
Tuplestorestate * setResult
Definition: execnodes.h:333
void tuplestore_putvalues(Tuplestorestate *state, TupleDesc tdesc, Datum *values, bool *isnull)
Definition: tuplestore.c:750
static const char * CreateCommandName(Node *parsetree)
Definition: utility.h:103

References AccessShareLock, CollectedCommand::alterTable, CollectedCommand::atscfg, BoolGetDatum(), ObjectAddress::classId, EventTriggerQueryState::commandList, CreateCommandName(), CollectedCommand::createopc, CStringGetTextDatum, currentEventTriggerState, CollectedCommand::d, CollectedCommand::defprivs, elog(), ereport, errcode(), errmsg(), ERROR, get_catalog_object_by_oid(), get_namespace_name_or_temp(), get_object_attnum_namespace(), get_object_attnum_oid(), getObjectIdentity(), getObjectTypeDescription(), CollectedCommand::grant, heap_getattr(), HeapTupleIsValid, i, if(), CollectedCommand::in_extension, InitMaterializedSRF(), Int32GetDatum(), InvalidAttrNumber, is_objectclass_supported(), lfirst, ObjectAddressSet, ObjectAddress::objectId, ObjectIdGetDatum(), ObjectAddress::objectSubId, OidIsValid, CollectedCommand::opfam, CollectedCommand::parsetree, PG_RETURN_VOID, PointerGetDatum(), RelationGetDescr, SCT_AlterDefaultPrivileges, SCT_AlterOpFamily, SCT_AlterTable, SCT_AlterTSConfig, SCT_CreateOpClass, SCT_Grant, SCT_Simple, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, CollectedCommand::simple, stringify_adefprivs_objtype(), stringify_grant_objtype(), table_close(), table_open(), tuplestore_putvalues(), generate_unaccent_rules::type, CollectedCommand::type, and values.

◆ pg_event_trigger_dropped_objects()

Datum pg_event_trigger_dropped_objects ( PG_FUNCTION_ARGS  )

Definition at line 1292 of file event_trigger.c.

1293 {
1294  ReturnSetInfo *rsinfo = (ReturnSetInfo *) fcinfo->resultinfo;
1295  slist_iter iter;
1296 
1297  /*
1298  * Protect this function from being called out of context
1299  */
1302  ereport(ERROR,
1303  (errcode(ERRCODE_E_R_I_E_EVENT_TRIGGER_PROTOCOL_VIOLATED),
1304  errmsg("%s can only be called in a sql_drop event trigger function",
1305  "pg_event_trigger_dropped_objects()")));
1306 
1307  /* Build tuplestore to hold the result rows */
1308  InitMaterializedSRF(fcinfo, 0);
1309 
1311  {
1312  SQLDropObject *obj;
1313  int i = 0;
1314  Datum values[12] = {0};
1315  bool nulls[12] = {0};
1316 
1317  obj = slist_container(SQLDropObject, next, iter.cur);
1318 
1319  /* classid */
1321 
1322  /* objid */
1324 
1325  /* objsubid */
1327 
1328  /* original */
1329  values[i++] = BoolGetDatum(obj->original);
1330 
1331  /* normal */
1332  values[i++] = BoolGetDatum(obj->normal);
1333 
1334  /* is_temporary */
1335  values[i++] = BoolGetDatum(obj->istemp);
1336 
1337  /* object_type */
1339 
1340  /* schema_name */
1341  if (obj->schemaname)
1343  else
1344  nulls[i++] = true;
1345 
1346  /* object_name */
1347  if (obj->objname)
1348  values[i++] = CStringGetTextDatum(obj->objname);
1349  else
1350  nulls[i++] = true;
1351 
1352  /* object_identity */
1353  if (obj->objidentity)
1355  else
1356  nulls[i++] = true;
1357 
1358  /* address_names and address_args */
1359  if (obj->addrnames)
1360  {
1362 
1363  if (obj->addrargs)
1365  else
1367  }
1368  else
1369  {
1370  nulls[i++] = true;
1371  nulls[i++] = true;
1372  }
1373 
1374  tuplestore_putvalues(rsinfo->setResult, rsinfo->setDesc,
1375  values, nulls);
1376  }
1377 
1378  return (Datum) 0;
1379 }
ArrayType * construct_empty_array(Oid elmtype)
Definition: arrayfuncs.c:3549
static int32 next
Definition: blutils.c:219
#define slist_container(type, membername, ptr)
Definition: ilist.h:1106
#define slist_foreach(iter, lhead)
Definition: ilist.h:1132
ArrayType * strlist_to_textarray(List *list)

References SQLDropObject::addrargs, SQLDropObject::address, SQLDropObject::addrnames, BoolGetDatum(), ObjectAddress::classId, construct_empty_array(), CStringGetTextDatum, currentEventTriggerState, ereport, errcode(), errmsg(), ERROR, i, if(), EventTriggerQueryState::in_sql_drop, InitMaterializedSRF(), Int32GetDatum(), SQLDropObject::istemp, next, SQLDropObject::normal, ObjectAddress::objectId, ObjectIdGetDatum(), ObjectAddress::objectSubId, SQLDropObject::objecttype, SQLDropObject::objidentity, SQLDropObject::objname, SQLDropObject::original, PointerGetDatum(), SQLDropObject::schemaname, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, slist_container, slist_foreach, EventTriggerQueryState::SQLDropList, strlist_to_textarray(), tuplestore_putvalues(), and values.

◆ pg_event_trigger_table_rewrite_oid()

Datum pg_event_trigger_table_rewrite_oid ( PG_FUNCTION_ARGS  )

Definition at line 1388 of file event_trigger.c.

1389 {
1390  /*
1391  * Protect this function from being called out of context
1392  */
1393  if (!currentEventTriggerState ||
1395  ereport(ERROR,
1396  (errcode(ERRCODE_E_R_I_E_EVENT_TRIGGER_PROTOCOL_VIOLATED),
1397  errmsg("%s can only be called in a table_rewrite event trigger function",
1398  "pg_event_trigger_table_rewrite_oid()")));
1399 
1401 }
#define PG_RETURN_OID(x)
Definition: fmgr.h:360

References currentEventTriggerState, ereport, errcode(), errmsg(), ERROR, InvalidOid, PG_RETURN_OID, and EventTriggerQueryState::table_rewrite_oid.

◆ pg_event_trigger_table_rewrite_reason()

Datum pg_event_trigger_table_rewrite_reason ( PG_FUNCTION_ARGS  )

Definition at line 1409 of file event_trigger.c.

1410 {
1411  /*
1412  * Protect this function from being called out of context
1413  */
1414  if (!currentEventTriggerState ||
1416  ereport(ERROR,
1417  (errcode(ERRCODE_E_R_I_E_EVENT_TRIGGER_PROTOCOL_VIOLATED),
1418  errmsg("%s can only be called in a table_rewrite event trigger function",
1419  "pg_event_trigger_table_rewrite_reason()")));
1420 
1422 }
#define PG_RETURN_INT32(x)
Definition: fmgr.h:354

References currentEventTriggerState, ereport, errcode(), errmsg(), ERROR, PG_RETURN_INT32, and EventTriggerQueryState::table_rewrite_reason.

◆ stringify_adefprivs_objtype()

static const char * stringify_adefprivs_objtype ( ObjectType  objtype)
static

Definition at line 2101 of file event_trigger.c.

2102 {
2103  switch (objtype)
2104  {
2105  case OBJECT_COLUMN:
2106  return "COLUMNS";
2107  case OBJECT_TABLE:
2108  return "TABLES";
2109  case OBJECT_SEQUENCE:
2110  return "SEQUENCES";
2111  case OBJECT_DATABASE:
2112  return "DATABASES";
2113  case OBJECT_DOMAIN:
2114  return "DOMAINS";
2115  case OBJECT_FDW:
2116  return "FOREIGN DATA WRAPPERS";
2117  case OBJECT_FOREIGN_SERVER:
2118  return "FOREIGN SERVERS";
2119  case OBJECT_FUNCTION:
2120  return "FUNCTIONS";
2121  case OBJECT_LANGUAGE:
2122  return "LANGUAGES";
2123  case OBJECT_LARGEOBJECT:
2124  return "LARGE OBJECTS";
2125  case OBJECT_SCHEMA:
2126  return "SCHEMAS";
2127  case OBJECT_PROCEDURE:
2128  return "PROCEDURES";
2129  case OBJECT_ROUTINE:
2130  return "ROUTINES";
2131  case OBJECT_TABLESPACE:
2132  return "TABLESPACES";
2133  case OBJECT_TYPE:
2134  return "TYPES";
2135  /* these currently aren't used */
2136  case OBJECT_ACCESS_METHOD:
2137  case OBJECT_AGGREGATE:
2138  case OBJECT_AMOP:
2139  case OBJECT_AMPROC:
2140  case OBJECT_ATTRIBUTE:
2141  case OBJECT_CAST:
2142  case OBJECT_COLLATION:
2143  case OBJECT_CONVERSION:
2144  case OBJECT_DEFAULT:
2145  case OBJECT_DEFACL:
2146  case OBJECT_DOMCONSTRAINT:
2147  case OBJECT_EVENT_TRIGGER:
2148  case OBJECT_EXTENSION:
2149  case OBJECT_FOREIGN_TABLE:
2150  case OBJECT_INDEX:
2151  case OBJECT_MATVIEW:
2152  case OBJECT_OPCLASS:
2153  case OBJECT_OPERATOR:
2154  case OBJECT_OPFAMILY:
2155  case OBJECT_PARAMETER_ACL:
2156  case OBJECT_POLICY:
2157  case OBJECT_PUBLICATION:
2160  case OBJECT_ROLE:
2161  case OBJECT_RULE:
2162  case OBJECT_STATISTIC_EXT:
2163  case OBJECT_SUBSCRIPTION:
2164  case OBJECT_TABCONSTRAINT:
2165  case OBJECT_TRANSFORM:
2166  case OBJECT_TRIGGER:
2168  case OBJECT_TSDICTIONARY:
2169  case OBJECT_TSPARSER:
2170  case OBJECT_TSTEMPLATE:
2171  case OBJECT_USER_MAPPING:
2172  case OBJECT_VIEW:
2173  elog(ERROR, "unsupported object type: %d", (int) objtype);
2174  }
2175 
2176  return "???"; /* keep compiler quiet */
2177 }

References elog(), ERROR, OBJECT_ACCESS_METHOD, OBJECT_AGGREGATE, OBJECT_AMOP, OBJECT_AMPROC, OBJECT_ATTRIBUTE, OBJECT_CAST, OBJECT_COLLATION, OBJECT_COLUMN, OBJECT_CONVERSION, OBJECT_DATABASE, OBJECT_DEFACL, OBJECT_DEFAULT, OBJECT_DOMAIN, OBJECT_DOMCONSTRAINT, OBJECT_EVENT_TRIGGER, OBJECT_EXTENSION, OBJECT_FDW, OBJECT_FOREIGN_SERVER, OBJECT_FOREIGN_TABLE, OBJECT_FUNCTION, OBJECT_INDEX, OBJECT_LANGUAGE, OBJECT_LARGEOBJECT, OBJECT_MATVIEW, OBJECT_OPCLASS, OBJECT_OPERATOR, OBJECT_OPFAMILY, OBJECT_PARAMETER_ACL, OBJECT_POLICY, OBJECT_PROCEDURE, OBJECT_PUBLICATION, OBJECT_PUBLICATION_NAMESPACE, OBJECT_PUBLICATION_REL, OBJECT_ROLE, OBJECT_ROUTINE, OBJECT_RULE, OBJECT_SCHEMA, OBJECT_SEQUENCE, OBJECT_STATISTIC_EXT, OBJECT_SUBSCRIPTION, OBJECT_TABCONSTRAINT, OBJECT_TABLE, OBJECT_TABLESPACE, OBJECT_TRANSFORM, OBJECT_TRIGGER, OBJECT_TSCONFIGURATION, OBJECT_TSDICTIONARY, OBJECT_TSPARSER, OBJECT_TSTEMPLATE, OBJECT_TYPE, OBJECT_USER_MAPPING, and OBJECT_VIEW.

Referenced by pg_event_trigger_ddl_commands().

◆ stringify_grant_objtype()

static const char * stringify_grant_objtype ( ObjectType  objtype)
static

Definition at line 2016 of file event_trigger.c.

2017 {
2018  switch (objtype)
2019  {
2020  case OBJECT_COLUMN:
2021  return "COLUMN";
2022  case OBJECT_TABLE:
2023  return "TABLE";
2024  case OBJECT_SEQUENCE:
2025  return "SEQUENCE";
2026  case OBJECT_DATABASE:
2027  return "DATABASE";
2028  case OBJECT_DOMAIN:
2029  return "DOMAIN";
2030  case OBJECT_FDW:
2031  return "FOREIGN DATA WRAPPER";
2032  case OBJECT_FOREIGN_SERVER:
2033  return "FOREIGN SERVER";
2034  case OBJECT_FUNCTION:
2035  return "FUNCTION";
2036  case OBJECT_LANGUAGE:
2037  return "LANGUAGE";
2038  case OBJECT_LARGEOBJECT:
2039  return "LARGE OBJECT";
2040  case OBJECT_SCHEMA:
2041  return "SCHEMA";
2042  case OBJECT_PARAMETER_ACL:
2043  return "PARAMETER";
2044  case OBJECT_PROCEDURE:
2045  return "PROCEDURE";
2046  case OBJECT_ROUTINE:
2047  return "ROUTINE";
2048  case OBJECT_TABLESPACE:
2049  return "TABLESPACE";
2050  case OBJECT_TYPE:
2051  return "TYPE";
2052  /* these currently aren't used */
2053  case OBJECT_ACCESS_METHOD:
2054  case OBJECT_AGGREGATE:
2055  case OBJECT_AMOP:
2056  case OBJECT_AMPROC:
2057  case OBJECT_ATTRIBUTE:
2058  case OBJECT_CAST:
2059  case OBJECT_COLLATION:
2060  case OBJECT_CONVERSION:
2061  case OBJECT_DEFAULT:
2062  case OBJECT_DEFACL:
2063  case OBJECT_DOMCONSTRAINT:
2064  case OBJECT_EVENT_TRIGGER:
2065  case OBJECT_EXTENSION:
2066  case OBJECT_FOREIGN_TABLE:
2067  case OBJECT_INDEX:
2068  case OBJECT_MATVIEW:
2069  case OBJECT_OPCLASS:
2070  case OBJECT_OPERATOR:
2071  case OBJECT_OPFAMILY:
2072  case OBJECT_POLICY:
2073  case OBJECT_PUBLICATION:
2076  case OBJECT_ROLE:
2077  case OBJECT_RULE:
2078  case OBJECT_STATISTIC_EXT:
2079  case OBJECT_SUBSCRIPTION:
2080  case OBJECT_TABCONSTRAINT:
2081  case OBJECT_TRANSFORM:
2082  case OBJECT_TRIGGER:
2084  case OBJECT_TSDICTIONARY:
2085  case OBJECT_TSPARSER:
2086  case OBJECT_TSTEMPLATE:
2087  case OBJECT_USER_MAPPING:
2088  case OBJECT_VIEW:
2089  elog(ERROR, "unsupported object type: %d", (int) objtype);
2090  }
2091 
2092  return "???"; /* keep compiler quiet */
2093 }

References elog(), ERROR, OBJECT_ACCESS_METHOD, OBJECT_AGGREGATE, OBJECT_AMOP, OBJECT_AMPROC, OBJECT_ATTRIBUTE, OBJECT_CAST, OBJECT_COLLATION, OBJECT_COLUMN, OBJECT_CONVERSION, OBJECT_DATABASE, OBJECT_DEFACL, OBJECT_DEFAULT, OBJECT_DOMAIN, OBJECT_DOMCONSTRAINT, OBJECT_EVENT_TRIGGER, OBJECT_EXTENSION, OBJECT_FDW, OBJECT_FOREIGN_SERVER, OBJECT_FOREIGN_TABLE, OBJECT_FUNCTION, OBJECT_INDEX, OBJECT_LANGUAGE, OBJECT_LARGEOBJECT, OBJECT_MATVIEW, OBJECT_OPCLASS, OBJECT_OPERATOR, OBJECT_OPFAMILY, OBJECT_PARAMETER_ACL, OBJECT_POLICY, OBJECT_PROCEDURE, OBJECT_PUBLICATION, OBJECT_PUBLICATION_NAMESPACE, OBJECT_PUBLICATION_REL, OBJECT_ROLE, OBJECT_ROUTINE, OBJECT_RULE, OBJECT_SCHEMA, OBJECT_SEQUENCE, OBJECT_STATISTIC_EXT, OBJECT_SUBSCRIPTION, OBJECT_TABCONSTRAINT, OBJECT_TABLE, OBJECT_TABLESPACE, OBJECT_TRANSFORM, OBJECT_TRIGGER, OBJECT_TSCONFIGURATION, OBJECT_TSDICTIONARY, OBJECT_TSPARSER, OBJECT_TSTEMPLATE, OBJECT_TYPE, OBJECT_USER_MAPPING, and OBJECT_VIEW.

Referenced by pg_event_trigger_ddl_commands().

◆ trackDroppedObjectsNeeded()

bool trackDroppedObjectsNeeded ( void  )

Definition at line 1141 of file event_trigger.c.

1142 {
1143  /*
1144  * true if any sql_drop, table_rewrite, ddl_command_end event trigger
1145  * exists
1146  */
1147  return (EventCacheLookup(EVT_SQLDrop) != NIL) ||
1150 }

References EventCacheLookup(), EVT_DDLCommandEnd, EVT_SQLDrop, EVT_TableRewrite, and NIL.

Referenced by deleteObjectsInList(), and EventTriggerBeginCompleteQuery().

◆ validate_ddl_tags()

static void validate_ddl_tags ( const char *  filtervar,
List taglist 
)
static

Definition at line 195 of file event_trigger.c.

196 {
197  ListCell *lc;
198 
199  foreach(lc, taglist)
200  {
201  const char *tagstr = strVal(lfirst(lc));
202  CommandTag commandTag = GetCommandTagEnum(tagstr);
203 
204  if (commandTag == CMDTAG_UNKNOWN)
205  ereport(ERROR,
206  (errcode(ERRCODE_SYNTAX_ERROR),
207  errmsg("filter value \"%s\" not recognized for filter variable \"%s\"",
208  tagstr, filtervar)));
209  if (!command_tag_event_trigger_ok(commandTag))
210  ereport(ERROR,
211  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
212  /* translator: %s represents an SQL statement name */
213  errmsg("event triggers are not supported for %s",
214  tagstr)));
215  }
216 }
CommandTag GetCommandTagEnum(const char *commandname)
Definition: cmdtag.c:84

References command_tag_event_trigger_ok(), ereport, errcode(), errmsg(), ERROR, GetCommandTagEnum(), lfirst, and strVal.

Referenced by CreateEventTrigger().

◆ validate_table_rewrite_tags()

static void validate_table_rewrite_tags ( const char *  filtervar,
List taglist 
)
static

Definition at line 222 of file event_trigger.c.

223 {
224  ListCell *lc;
225 
226  foreach(lc, taglist)
227  {
228  const char *tagstr = strVal(lfirst(lc));
229  CommandTag commandTag = GetCommandTagEnum(tagstr);
230 
231  if (!command_tag_table_rewrite_ok(commandTag))
232  ereport(ERROR,
233  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
234  /* translator: %s represents an SQL statement name */
235  errmsg("event triggers are not supported for %s",
236  tagstr)));
237  }
238 }

References command_tag_table_rewrite_ok(), ereport, errcode(), errmsg(), ERROR, GetCommandTagEnum(), lfirst, and strVal.

Referenced by CreateEventTrigger().

Variable Documentation

◆ currentEventTriggerState