[GENERAL] Load fails

2000-07-13 Thread Brandon Ibach
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

Re: [GENERAL] Load fails

2000-07-13 Thread Brandon Ibach
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 &

[GENERAL] CREATE OPERATOR error

1999-11-16 Thread Brandon Ibach
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

Re: [GENERAL] CREATE OPERATOR error

1999-11-16 Thread Brandon Ibach
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