Bug #847: plpgsql 'raise notice' > 4000 chars disconnects pgsql backend 7.2.1 - Mailing list pgsql-bugs

From pgsql-bugs@postgresql.org
Subject Bug #847: plpgsql 'raise notice' > 4000 chars disconnects pgsql backend 7.2.1
Date
Msg-id 20021212221844.AAD83476DDD@postgresql.org
Whole thread Raw
Responses Re: Bug #847: plpgsql 'raise notice' > 4000 chars  (Neil Conway <neilc@samurai.com>)
Re: Bug #847: plpgsql 'raise notice' > 4000 chars disconnects pgsql backend 7.2.1  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
stephen dee (ala_frosty@yaho#nospam#o.com) reports a bug with a severity of 1
The lower the number the more severe it is.

Short Description
plpgsql 'raise notice' > 4000 chars disconnects pgsql backend 7.2.1

Long Description
Try this:

It will cause you (et al) to get disconnected from the back end. Very cool if you want to annoy people.

SD

Sample Code
DROP FUNCTION sp_crashpg();

CREATE FUNCTION sp_crashpg() RETURNS varchar AS '
DECLARE
message varchar;
counts int4;
BEGIN
-- Do not crash yet:
message := repeat(''I am going to crash!'',200);
raise notice ''No crash: %'',message;
-- Okay, now bring it on HAL:
message := repeat(''I am going to crash!'',201);
raise notice ''Crash here: %'',message;

FOR counts IN 1..3 LOOP
    -- DO NOTHING
END LOOP;
RETURN ''I told you so'';
END;'
LANGUAGE 'plpgsql';

No file was uploaded with this report

pgsql-bugs by date:

Previous
From: Thomas O'Connell
Date:
Subject: time and current_time default formats
Next
From: Bruce Momjian
Date:
Subject: Re: Bug #838: SSL problems in 7.3