vote up 0 vote down star

When I call a PL/PgSQL function (not a trigger) from another such function, is it possible to know the name or some kind of ID of a calling function?

flag

1 Answer

vote up 1 vote down check

this is a close as you will get, and it wont work in nested calls.

select current_query from pg_stat_activity where procpid = pg_backend_pid();

You might want to email pgsql-hackers@postgresql.org with a feature request, including the use case you have for wanting to know this information.

link|flag
This gives me a full text of the calling query. Thanks! – Denys May 20 at 15:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.