pgsql: Add a way to get the current function's OID in pl/pgsql.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add a way to get the current function's OID in pl/pgsql.
Date: 2023-04-04 17:33:22
Message-ID: E1pjkX2-001M2a-UE@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add a way to get the current function's OID in pl/pgsql.

Invent "GET DIAGNOSTICS oid_variable = PG_ROUTINE_OID".
This is useful for avoiding the maintenance nuisances that come
with embedding a function's name in its body, as one might do
for logging purposes for example. Typically users would cast the
result to regproc or regprocedure to get something human-readable,
but we won't pre-judge whether that's appropriate.

Pavel Stehule, reviewed by Kirk Wolak and myself

Discussion: https://postgr.es/m/CAFj8pRA4zMd5pY-B89Gm64bDLRt-L+akOd34aD1j4PEstHHSVQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d3d53f955cf6ad755ba3682577e0f6fa10106438

Modified Files
--------------
doc/src/sgml/plpgsql.sgml | 5 +++++
src/pl/plpgsql/src/pl_exec.c | 6 ++++++
src/pl/plpgsql/src/pl_funcs.c | 2 ++
src/pl/plpgsql/src/pl_gram.y | 6 ++++++
src/pl/plpgsql/src/pl_unreserved_kwlist.h | 1 +
src/pl/plpgsql/src/plpgsql.h | 1 +
src/test/regress/expected/plpgsql.out | 31 +++++++++++++++++++++++++++++--
src/test/regress/sql/plpgsql.sql | 29 +++++++++++++++++++++++++++--
8 files changed, 77 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Jeff Davis 2023-04-04 17:45:28 pgsql: Canonicalize ICU locale names to language tags.
Previous Message Robert Haas 2023-04-04 16:09:12 pgsql: Add a run_as_owner option to subscriptions.