Binary Refcursor possible?

Поиск
Список
Период
Сортировка
От Ralph Mason
Тема Binary Refcursor possible?
Дата
Msg-id 4383E459.2070906@telogis.com
обсуждение исходный текст
Ответы Re: Binary Refcursor possible?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-performance
Hi,

I am trying to get better performance reading data from postgres, so I
would like to return the data as binary rather than text as parsing it
is taking a considerable amount of processor.

However I can't figure out how to do that! I have functions like.

function my_func(ret refcursor) returns refcursor AS

$$

BEGIN
OPEN $1 for select * from table;
return $1
END;

$$ language 'plpgsql'

There are queried using

SELECT my_func( 'ret'::refcursor); FETCH ALL FROM ret;

Is there any way I can say make ret a binary cursor?

Thanks
Ralph



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Hardware/OS recommendations for large databases (
Следующее
От: Alan Stange
Дата:
Сообщение: Re: Hardware/OS recommendations for large databases (