Re: [GENERAL] urgent: problems with query_limit

1999-06-30 Thread Bruce Momjian
> Hi > > 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? > Use the

Re: [HACKERS] RE: [GENERAL] urgent: problems with query_limit

1999-06-30 Thread Jan Wieck
Marcus "Mike" Mascari wrote: > What I would like to see (perhaps its possible > right now, or a workaround is available) is a method > for yielding an elog() message when the number of > tuples to be returned is over a specified USER limit. > > [...] > > However, what we would like to prevent is

RE: [GENERAL] urgent: problems with query_limit

1999-06-30 Thread Marcus Mascari
What I would like to see (perhaps its possible right now, or a workaround is available) is a method for yielding an elog() message when the number of tuples to be returned is over a specified USER limit. The thrust of this issue is that we are rolling out a PostgreSQL database which is driven

RE: [GENERAL] urgent: problems with query_limit

1999-06-30 Thread Jackson, DeJuan
Try: select * from table LIMIT 100; > Hi > > 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 t

Re: [GENERAL] urgent: problems with query_limit

1999-06-30 Thread Peter Eisentraut
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 t

[GENERAL] urgent: problems with query_limit

1999-06-30 Thread Herbert Liechti
Hi 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? Herbie -- ~