Fwd: lots of errors from fmgr.h when I try to write a C UDF

Поиск
Список
Период
Сортировка
От Anh Pham
Тема Fwd: lots of errors from fmgr.h when I try to write a C UDF
Дата
Msg-id CAL7AQBYzB62_+J2htTrLv9kr2khAXAGwyN9QhVbWarjAvybaYg@mail.gmail.com
обсуждение исходный текст
Ответы Re: Fwd: lots of errors from fmgr.h when I try to write a C UDF  (Ian Lawrence Barwick <barwick@gmail.com>)
Список pgsql-general
Hi,
I had Postgres 9.3 setup and run successfully in Eclipse (MacOSX)
I am trying to write a C user-defined function:

#include <fmgr.h>
...
#ifdef PG_MODULE_MAGIC
PG_MODULE_MAGIC;
#endif
...

However, when I tried to compile the code:
gcc -fpic -c ...
It gave me a lot of errors and warnings from fmgr.h:

...
/Users/atpham/workspacecdt/pgsql/src/include/fmgr.h:59:2: error: unknown type name 'MemoryContext'

        MemoryContext fn_mcxt;          /* memory context to store fn_extra in */
        ^
/Users/atpham/workspacecdt/pgsql/src/include/fmgr.h:71:2: error: unknown type name 'Oid'
        Oid                     fncollation;    /* collation for function to use */
        ^
/Users/atpham/workspacecdt/pgsql/src/include/fmgr.h:72:2: error: unknown type name 'bool'
        bool            isnull;                 /* function must set true if result is NULL */
...

Any suggestion where I did it wrong?
Thank you :)

В списке pgsql-general по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] Insert result does not match record count
Следующее
От: Ian Lawrence Barwick
Дата:
Сообщение: Re: Fwd: lots of errors from fmgr.h when I try to write a C UDF