Re: Problem with trigger function in C
Tom Lane <[email protected]> Tue, 28 Oct 2008 17:01:22 -0400
| Newsgroups | gmane.comp.db.postgresql.interfaces |
|---|---|
| Message-ID | <[email protected]> |
"Joe Halpin" <[email protected]> writes: > Sorry I forgot to add that part. Here's how I did that: > sn=# create function xqueryTrigger() returns trigger as > '/usr/local/lib/postgresql/xqueryTrigger.so' language c; > CREATE FUNCTION > Is the function name case sensitive? Well, if you don't quote it then it's forced to all lower case, same as any other SQL identifier. ... and that is the problem, because your function's C name is xquerytrigger but the V1 macro says xqueryTrigger. I must be blind today :-(. Get that all in sync and you should be good. regards, tom lane -- Sent via pgsql-interfaces mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-interfaces