show fct_name of the function/procedure - Mailing list pgsql-general

From ft
Subject show fct_name of the function/procedure
Date
Msg-id 4e6435ceb793472cf52fdbd196f9d50c84469619.camel@ft-c.de
Whole thread Raw
Responses Re: show fct_name of the function/procedure  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-general
Hello,

I need (a very simple construct) to show the fct_name/proc_name 
for the function/procedure.

Example:
create procedure/function bet_process() as
$$
declare
 pid      int  := pg_backend_pid() ; --  it works fine
 fct_name text := pg_fct_name()    ; --  I need it
begin
 -- do s.th like
 -- call log(pid, fct_name, 'my message');
end;
$$ language plpgsql;

Franz




pgsql-general by date:

Previous
From: Sasmit Utkarsh
Date:
Subject: Re: Stess test via libpq for postgreSQL DB
Next
From: "David G. Johnston"
Date:
Subject: Re: show fct_name of the function/procedure