]> granicus.if.org Git - postgresql/commit
Expose object name error fields in PL/pgSQL.
authorNoah Misch <noah@leadboat.com>
Wed, 3 Jul 2013 11:29:23 +0000 (07:29 -0400)
committerNoah Misch <noah@leadboat.com>
Wed, 3 Jul 2013 11:30:15 +0000 (07:30 -0400)
commitc21bb48d6fc1827e117e2667e0a5d9d96d984f46
treed7ceec3bc2bab953a7ca3e94b7fc2798432d76b8
parenta74a977fb0ea535aeae06fe67ee1f9491c30b619
Expose object name error fields in PL/pgSQL.

Specifically, permit attaching them to the error in RAISE and retrieving
them from a caught error in GET STACKED DIAGNOSTICS.  RAISE enforces
nothing about the content of the fields; for its purposes, they are just
additional string fields.  Consequently, clarify in the protocol and
libpq documentation that the usual relationships between error fields,
like a schema name appearing wherever a table name appears, are not
universal.  This freedom has other applications; consider a FDW
propagating an error from an RDBMS having no schema support.

Back-patch to 9.3, where core support for the error fields was
introduced.  This prevents the confusion of having a release where libpq
exposes the fields and PL/pgSQL does not.

Pavel Stehule, lexical revisions by Noah Misch.
doc/src/sgml/libpq.sgml
doc/src/sgml/plpgsql.sgml
doc/src/sgml/protocol.sgml
src/pl/plpgsql/src/pl_exec.c
src/pl/plpgsql/src/pl_funcs.c
src/pl/plpgsql/src/pl_gram.y
src/pl/plpgsql/src/pl_scanner.c
src/pl/plpgsql/src/plpgsql.h
src/test/regress/expected/plpgsql.out
src/test/regress/sql/plpgsql.sql