BUG #2803: server terminated abnormally when limit or offset is null

Started by Greg Johnsonover 19 years ago2 messagesbugs
Jump to latest
#1Greg Johnson
gregj@interprose.com

The following bug has been logged online:

Bug reference: 2803
Logged by: Greg Johnson
Email address: gregj@interprose.com
PostgreSQL version: 8.2rc1
Operating system: Red Hat Enterprise Linux WS release 4 (Nahant Update 3)
Description: server terminated abnormally when limit or offset is
null
Details:

Examples:

select * from pg_stat_activity limit null;
select * from pg_stat_activity offset null;

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Greg Johnson (#1)
Re: BUG #2803: server terminated abnormally when limit or offset is null

"Greg Johnson" <gregj@interprose.com> writes:

Description: server terminated abnormally when limit or offset is
null

Sigh ... looks like this was broken by the recent change to make
limit/offset be int8 instead of int4. Thanks for the report.

regards, tom lane