Re: [GENERAL] urgent: problems with query_limit

From: Peter Eisentraut <peter(at)pathwaynet(dot)com>
To: Herbert Liechti <Herbert(dot)Liechti(at)thinx(dot)ch>
Cc: postgres <pgsql-general(at)postgresql(dot)org>
Subject: Re: [GENERAL] urgent: problems with query_limit
Date: 1999-06-30 22:17:15
Message-ID: Pine.LNX.4.10.9906301815050.22317-100000@uruguay.pathwaynet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, 30 Jun 1999, Herbert Liechti wrote:

> We upgraded our system from 6.4 to the new 6.5 version. The set query_limit function is not working
> anymore in 6.5.
>
> db => set query_limit to '100';
> SET VARIABLE
> db => select * from table;
>
> statement is returning all records from the table. What's wrong here?

Whereas I'm not sure right now about what's wrong there, you should check
the new documentation of the SELECT command for the LIMIT specifier, as in
select * from table limit 100;
That might help.

--
Peter Eisentraut
PathWay Computing

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Jackson, DeJuan 1999-06-30 22:17:58 RE: [GENERAL] urgent: problems with query_limit
Previous Message Mike Haberman 1999-06-30 22:01:10 help with SPI_<commands> Please