On Thu, Feb 20, 2014 at 12:07 PM, Ashutosh Bapat
<ashutosh.ba...@enterprisedb.com> wrote:
> That seems a good idea. We will get rid of FETCH_COUNT then, wouldn't we?

No, I don't think we want to do that. FETCH_COUNT values greater than
1 are still useful to get reasonably tabulated output without hogging
too much memory. For example:

db=# \set FETCH_COUNT 3
db=# select repeat('a', i) a, 'x'x from generate_series(1,9)i;
  a  | x
-----+---
 a   | x
 aa  | x
 aaa | x
 aaaa   | x
 aaaaa  | x
 aaaaaa | x
 aaaaaaa   | x
 aaaaaaaa  | x
 aaaaaaaaa | x


Regards,
Marti


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to