what's the message: CONTEXT: PL/pgSQL function "proc_sub_b" line 7 at assignment

From: Gary Fu <gfu(at)sigmaspace(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: what's the message: CONTEXT: PL/pgSQL function "proc_sub_b" line 7 at assignment
Date: 2010-12-29 22:19:40
Message-ID: ifgc5q$1u1i$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi,

Why do I get the message in Subject when I do 'select proc_sub_b()'
under psql ? If I comment out the RAISE statement in proc_sub_a then I
don't see the message.

Thanks,
Gary

int_admin.modaps_int> select proc_sub_b();
INFO: id=11
CONTEXT: PL/pgSQL function "proc_sub_b" line 7 at assignment
proc_sub_b
------------
0
(1 row)

------------------------------------------------------------
CREATE OR REPLACE FUNCTION proc_sub_a(
v_id int
) RETURNS INTEGER AS $$
DECLARE
BEGIN

RAISE INFO 'id=%', v_id;

return 1;

end;
$$ LANGUAGE plpgsql;

CREATE OR REPLACE FUNCTION proc_sub_b(
) RETURNS INTEGER AS $$
DECLARE
v_ret int;
BEGIN

v_ret := proc_sub_a(11);

return 0;

end;
$$ LANGUAGE plpgsql;

Responses

Browse pgsql-general by date

  From Date Subject
Next Message bricklen 2010-12-30 00:39:55 B-tree + sorting + unique constraint
Previous Message bricklen 2010-12-29 21:53:20 Re: ERROR: could not open relation base/2757655/6930168: No such file or directory -- during warm standby setup