mirror of
https://github.com/postgres/postgres.git
synced 2026-03-21 01:50:42 -04:00
Commit 3855968f32 added syntax, pg_dump,
psql support, and documentation, but the triggers didn't actually fire.
With this commit, they now do. This is still a pretty basic facility
overall because event triggers do not get a whole lot of information
about what the user is trying to do unless you write them in C; and
there's still no option to fire them anywhere except at the very
beginning of the execution sequence, but it's better than nothing,
and a good building block for future work.
Along the way, add a regression test for ALTER LARGE OBJECT, since
testing of event triggers reveals that we haven't got one.
Dimitri Fontaine and Robert Haas
18 lines
550 B
Makefile
18 lines
550 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for utils/cache
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/utils/cache/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/utils/cache
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = attoptcache.o catcache.o evtcache.o inval.o plancache.o relcache.o \
|
|
relmapper.o spccache.o syscache.o lsyscache.o typcache.o ts_cache.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|