newbie patch-attempt: selecting large result sets in psql

From: "Chris Mair" <list(at)1006(dot)org>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: newbie patch-attempt: selecting large result sets in psql
Date: 2006-07-11 19:19:28
Message-ID: 53713.216.123.178.194.1152645568.squirrel@www.endian.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi :)

powered by the great talk for newbie hackers by Neil Conway & Gavin
Sherry [1] at the anniversary summit I sneaked into the Code Sprint
and started working a bit on a Todo from Neil's Code Sprint Page:

"Add a psql option to have it submit SELECT queries via a cursor,
to avoid excessive memory consumption when manipulating large
result sets"

Gavin gave me a sketch of a patch that added a new command line
option to psql that would have it use cursors for selects.

One of the problems with this was that a user would expect psql to
work as usual (including all format and output option stuff) and
to do this properly most of the psql output code would need to be
refactored.

Thinking about it, we had the idea to just introduce a new \ operator
that would output the results of a select (using cursors) in an
indipendent code path. Who's selecting gigabytes of stuff into a
HTML table anyway?

So, I've introduced a new \u command that from a user perspective
is identical to \g (it executes the query buffer), just that it
uses cursors and honours only the field separator.

For example you could just do

select a, c, g
from big
\u bigout.dat

The patch is here [2], is working, but needs some performance
improvment and double checking. Which I won't do before getting
some feedback that what I'm doing does make any sense at all ;)

Bye, Chris

[1] http://neilconway.org/talks/hacking/
[2] http://www.1006.org/tmp/psql_cursor-3.patch

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Treat 2006-07-11 19:43:24 Re: More nuclear options
Previous Message Merlin Moncure 2006-07-11 18:50:41 Re: More nuclear options