Re: Problem with trigger function in C
- From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
- To: "Joe Halpin" <jhalpin100(at)gmail(dot)com>
- Cc: pgsql-interfaces(at)postgresql(dot)org
- Subject: Re: Problem with trigger function in C
- Date: Tue, 28 Oct 2008 17:01:22 -0400
- Message-id: <25777.1225227682@sss.pgh.pa.us> <text/plain>
"Joe Halpin" <jhalpin100(at)gmail(dot)com> 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
Home |
Main Index |
Thread Index