Greetings...
I have a couple of custom functions (written in C) which used to
work just fine. However, I recently relinked them, and now I get a
failure whenever I try to use them:
ERROR: Load of file /home/postgres/lib/vcic.so failed:
/home/postgres/lib/vcic.so: undefined symbol: palloc
Quoting Tom Lane <[EMAIL PROTECTED]>:
> Brandon Ibach <[EMAIL PROTECTED]> writes:
> > ERROR: Load of file /home/postgres/lib/vcic.so failed:
> > /home/postgres/lib/vcic.so: undefined symbol: palloc
>
> palloc() has been a macro for a long time. Could you be
&
Can anybody explain what might be happening here?
abc=> create operator =* ( leftarg = varchar, rightarg = varchar,
abc->procedure = vciceq, commutator = =* );
ERROR: parser: parse error at or near "varchar"
The function "vciceq" already exists, and works. I've tried a
number of vari
Quoting ^chewie <[EMAIL PROTECTED]>:
> On Tue, 16 Nov 1999, Brandon Ibach wrote:
>
> BI>Can anybody explain what might be happening here?
> BI>
> BI> abc=> create operator =* ( leftarg = varchar, rightarg = varchar,
> BI> abc->procedure = vcice