diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-11-18 16:33:48 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2010-11-18 17:06:19 -0300 |
commit | 6cc2deb86e9183262493a6537700ee305fb3e096 (patch) | |
tree | 26c512acccf84e9e7e6ec71594a427c42b83f388 /src/include/utils/builtins.h | |
parent | 48c348f86ce09c668af7cf271757c3f156f28344 (diff) | |
download | postgresql-6cc2deb86e9183262493a6537700ee305fb3e096.tar.gz postgresql-6cc2deb86e9183262493a6537700ee305fb3e096.zip |
Add pg_describe_object function
This function is useful to obtain textual descriptions of objects as
stored in pg_depend.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index f4b2a962c81..020ce3ce2ed 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -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); |