Re: wierd error

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: wierd error
Дата
Msg-id 12842.1015527410@sss.pgh.pa.us
обсуждение исходный текст
Ответ на wierd error  ("Travis Hoyt" <thoyt@npc.net>)
Список pgsql-novice
"Travis Hoyt" <thoyt@npc.net> writes:
>  select * from mydata where to_char(time, 'SS') != '00';
> server sent data ("D" message) without prior row description ("T" message)
> server sent data ("D" message) without prior row description ("T" message)

> Anyone know what this means?  I can do a select count(*) on this and it
> comes back with a value, approx 460k rows.

You're running out of memory for the results on the client side.
libpq is not very graceful about coping with that situation :-(
--- it doesn't crash, but it does forget that it was absorbing
a query result, so then you get all these bogus error messages.
Fixing this is on our TODO list, but it hasn't been very high
priority because in practice you want to avoid such situations in
the first place.

I'd suggest using a cursor to retrieve the huge result a few hundred
rows at a time.

            regards, tom lane

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

Предыдущее
От: "Al-Haddad, Mohammad J"
Дата:
Сообщение: create remote table with sort of index...
Следующее
От: Oliver Elphick
Дата:
Сообщение: Re: wierd error