Re: wierd error - Mailing list pgsql-novice

From Tom Lane
Subject Re: wierd error
Date
Msg-id 12842.1015527410@sss.pgh.pa.us
Whole thread Raw
In response to wierd error  ("Travis Hoyt" <thoyt@npc.net>)
List 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 by date:

Previous
From: "Al-Haddad, Mohammad J"
Date:
Subject: create remote table with sort of index...
Next
From: Oliver Elphick
Date:
Subject: Re: wierd error