Re: wierd error

Поиск
Список
Период
Сортировка
Искать
От
Tom Lane
Тема
Re: wierd error
Дата
Msg-id
12842.1015527410@sss.pgh.pa.us
Ответ на
wierd error (Travis Hoyt)
Список
Дерево обсуждения
wierd error "Travis Hoyt" <thoyt@npc.net>
Re: wierd error Oliver Elphick <olly@lfix.co.uk>
Re: wierd error Tom Lane <tgl@sss.pgh.pa.us>
"Travis Hoyt"  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
Дата:
От: Oliver Elphick
Дата:
Сообщение: Re: wierd error
FAQ