Re: sql query cursor problem
От
Tom Lane
Тема
Re: sql query cursor problem
Дата
Msg-id
15634.994804101@sss.pgh.pa.us
Ответ на
sql query cursor problem (Risko Peter)
Список
Дерево обсуждения
sql query cursor problem Risko Peter <risko.peter@mhc.hu>
Re: sql query cursor problem Tom Lane <tgl@sss.pgh.pa.us>
Risko Peter writes: > It seems we've found a bug in PostgreSQL handling of cursored queries. > I assume that it's legal to do 'fetch backward all in xxx' and then > 'fetch 1 in xxx' afterwards. Backwards scan doesn't work right for any but the simplest sorts of queries (no joins, no grouping or aggregation, probably some other issues). It'd be nice to fix it, but it's not very high on anyone's priority list. There are workarounds available, one of the simplest being to specify ORDER BY --- the result of a sort step *can* be scanned backwards, IIRC. Use EXPLAIN to make sure your query has a Sort at the top level. regards, tom lane
В списке pgsql-bugs по дате отправления