From: | Patrick Welche <prlw1(at)newn(dot)cam(dot)ac(dot)uk> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Subject: | triggers and C include files |
Date: | 2001-11-04 22:01:29 |
Message-ID: | 20011104220129.A4137@quartz.newn.cam.ac.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
In 31 Oct 2001 20:23 GMT source, doc/src/sgml/trigger.sgml mentions:
#include "executor/spi.h" /* this is what you need to work with SPI */
#include "commands/trigger.h" /* -"- and triggers */
for writing triggers in C, yet:
% cd src/include
% gmake -n install
/bin/sh ../../config/mkinstalldirs /usr/local/pgsql/include/libpq /usr/local/pgsql/include/internal/libpq /usr/local/pgsql/include/internal/lib
for file in fmgr.h postgres.h access/attnum.h commands/trigger.h \
executor/spi.h utils/elog.h utils/geo_decls.h utils/mcxt.h \
utils/palloc.h; do \
if cmp -s ./$file /usr/local/pgsql/include/$file; \
then \
: ; \
else \
rm -f /usr/local/pgsql/include/$file; \
fi ; \
done
...
seems to actively want to get rid of those files (?!) Anyway, they are
definitely not installed on my system. So, have things changed and the
documentation lagged, or should those include files be installed?
(I have never written a C trigger function - yet.)
Cheers,
Patrick
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2001-11-04 22:37:51 | Re: triggers and C include files |
Previous Message | Patrick Welche | 2001-11-04 20:53:32 | British Double Summer Time |