Author: dpage
Date: 2009-05-14 11:54:05 +0100 (Thu, 14 May 2009)
New Revision: 7867
Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7867&view=rev
Log:
Use Ctrl+Fn for shortcuts in the debugger on GTK, as F10 is a 'system' key and
isn't processed by wxWidgets. [Ashesh Vashi]
When postgresql implements the following query:
Select * from where order by
limit
It appears to do a select, then a sort, then return the top X rows.
This works fine for small results but not for tables with tens of
millions of rows and queries that may return tens of thousands or eve
(This doesn't belong on the pgadmin-hackers list, but here goes anyway..)
Berkowitz Eric wrote:
When postgresql implements the following query:
Select * from where order by
limit
It appears to do a select, then a sort, then return the top X rows.
This works fine for small results but no