1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Add pg_describe_object function

This function is useful to obtain textual descriptions of objects as
stored in pg_depend.
This commit is contained in:
Alvaro Herrera
2010-11-18 16:33:48 -03:00
parent 48c348f86c
commit 6cc2deb86e
5 changed files with 48 additions and 28 deletions

View File

@ -1045,6 +1045,9 @@ extern Datum window_nth_value(PG_FUNCTION_ARGS);
/* access/transam/twophase.c */
extern Datum pg_prepared_xact(PG_FUNCTION_ARGS);
/* catalogs/dependency.c */
extern Datum pg_describe_object(PG_FUNCTION_ARGS);
/* commands/constraint.c */
extern Datum unique_key_recheck(PG_FUNCTION_ARGS);