SET QUERY_LIMIT bug report

From: José Soares <jose(at)sferacarta(dot)com>
To: hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: SET QUERY_LIMIT bug report
Date: 1999-06-16 15:28:39
Message-ID: 3767C2A7.B3293817@sferacarta.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I see there's still the command:

SET QUERY_LIMIT (even in the docs)
but it doesn't work.
prova=> select * from test limit 1;
num|flt8
----+----
1.00| 1
(1 row)

prova=>
prova=> set query_limit = '1';
SET VARIABLE
prova=> select * from test;
num| flt8
-----+-----
1.00| 1
2.34|2.343
-3.00| -3
(3 rows)

prova=> show query_limit;
NOTICE: query limit is 1
SHOW VARIABLE

--
______________________________________________________________
PostgreSQL 6.5.0 on i586-pc-linux-gnu, compiled by gcc 2.7.2.3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Jose'

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Lockhart 1999-06-16 15:29:58 Re: [HACKERS] 6.5.0 - Overflow bug in AVG( )
Previous Message Jackson, DeJuan 1999-06-16 15:21:28 RE: [HACKERS] 6.5.0 - Overflow bug in AVG( )