Re: How to write a c-function to return multiple bytea rows

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How to write a c-function to return multiple bytea rows
Дата
Msg-id 2784.1196315418@sss.pgh.pa.us
обсуждение исходный текст
Ответ на How to write a c-function to return multiple bytea rows  ("Billow Gao" <billowgy@gmail.com>)
Список pgsql-hackers
"Billow Gao" <billowgy@gmail.com> writes:
> Also, when I compile it, I had warning:
> test.c:121: warning: assignment makes pointer from integer without a cast
> The line is:
> tuple = heap_form_tuple( tupdesc, &dtvalues, &isNull );

That part is because you didn't #include access/heapam.h, where
heap_form_tuple is declared.  If you didn't get a warning about it
not being declared, you do not have warnings turned up high enough.
        regards, tom lane


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: jaguar is up
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [PATCHES] Re: [GENERAL] plperl and regexps with accented characters - incompatible?