summaryrefslogtreecommitdiff
path: root/src/backend/commands/trigger.c
AgeCommit message (Expand)Author
2002-12-15Tweak default memory context allocation policy so that a context is notTom Lane
2002-11-25Un-break triggers declared for INSERT OR DELETE OR UPDATE. This workedTom Lane
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-10-21Avoid using IsTransactionBlock() in DeferredTriggerSetState(); no realTom Lane
2002-10-14Arrange to copy relcache's trigdesc structure at the start of anyTom Lane
2002-10-03Hack to make it possible to load CREATE CONSTRAINT TRIGGER commands thatTom Lane
2002-09-23Further thinking about heap_mark4update: in HeapTupleSelfUpdated case,Tom Lane
2002-09-21Provide an upgrade strategy for dump files containing functions declaredTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-25Clean up comments to be careful about the distinction between variable-Tom Lane
2002-08-22Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane
2002-08-18Make CREATE CONSTRAINT TRIGGER check for REFERENCES privilege on bothPeter Eisentraut
2002-08-17Improve documentation of trigger firing queue handling, cleanup.Bruce Momjian
2002-08-13Remove obsolete uses of lanispl. Only used in pg_dump now, but can bePeter Eisentraut
2002-08-05Restructure system-catalog index updating logic. Instead of havingTom Lane
2002-07-20Tweak CreateTrigger() so that the OID used in the name of anTom Lane
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-24Mark index entries "killed" when they are no longer visible to anyTom Lane
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-04-30Code review for ALTER TRIGGER RENAME patch: make better use of index,Tom Lane
2002-04-27Restructure aclcheck error reporting to make permission-failureTom Lane
2002-04-26Move renametrig() from tablecmds.c to trigger.c --- if we're going toTom Lane
2002-04-19pg_trigger's index on tgrelid is replaced by a unique index onTom Lane
2002-04-12Checking to decide whether relations are system relations now dependsTom Lane
2002-04-09Functions live in namespaces. Qualified function names work, egTom Lane
2002-04-01Add tgconstrrelid to stored Trigger structures, make RI trigger functionsTom Lane
2002-03-31Reimplement temp tables using schemas. The temp table map is history;Tom Lane
2002-03-29Mop-up some infelicities in new relation lookup handling.Tom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-21Change the aclchk.c routines to uniformly use OIDs to identify theTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-08Fix copying/equality-check bugs in GrantStmt and ConstraintsSetStmt,Tom Lane
2002-03-06Change made to elog:Bruce Momjian
2002-03-02Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian
2002-02-19A bunch of changes aimed at reducing backend startup time...Tom Lane
2002-01-15Fix typo that caused equalTriggerDescs() to return false in cases whereTom Lane
2002-01-03Require ownership permission for CREATE INDEX, per bug report.Tom Lane
2001-11-16Remove 'triggered data change violation' error check, per recentTom Lane
2001-11-12Clean up a bunch of ScanKeyEntryInitialize calls that weren't botheringTom Lane
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-08-23Ensure that all TransactionId comparisons are encapsulated in macrosTom Lane
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane
2001-08-02Fix some poor decisions about sizing of trigger-related memory contexts.Tom Lane
2001-06-22Statistical system views (yet without the config stuff, butJan Wieck