Re: [ADMIN] C function from 7.3.2 to 7.4.3

2004-07-01 Thread Tom Lane
"Lee Wu" <[EMAIL PROTECTED]> writes: > I have some C functions (was compiled against 7.3.2, I think) > Do I need to re-compile C functions against 7.4.3 Yes. You can hardly ever expect to move C functions across PG major versions without at least recompiling them. (We try not to break the sourc

Re: [ADMIN] C function from 7.3.2 to 7.4.3

2004-07-01 Thread Peter Eisentraut
Lee Wu wrote: > I have some C functions (was compiled against 7.3.2, I think) Recompile against 7.4.*. ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org

Re: [ADMIN] C function from 7.3.2 to 7.4.3

2004-07-01 Thread Joe Conway
Lee Wu wrote: I have some C functions (was compiled against 7.3.2, I think) Do I need to re-compile C functions against 7.4.3 or something else I missed? Yes, you need to recompile against 7.4.3 HTH, Joe ---(end of broadcast)--- TIP 5: Have you check

[ADMIN] C function from 7.3.2 to 7.4.3

2004-07-01 Thread Lee Wu
Greetings,   I have some C functions (was compiled against 7.3.2, I think)   CREATE FUNCTION "mud" () RETURNS TRIGGER AS '/xxx/pgsql/lib/du.so', 'mud' LANGUAGE 'C';   It runs fine under 7.3.2, but I will get error when run the above CREATE FUNCTION under 7.4.3. ERROR:  could not loa