diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-03 17:51:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-03 17:51:13 +0000 |
commit | b8fab2411dbb08d918d5998ee78325d2a0549c7f (patch) | |
tree | 617a8124cf945741d9be116d74401c29f0accc45 /src/include/utils/builtins.h | |
parent | 06c22d7f519cede815bbec96b490727fd8b5c229 (diff) | |
download | postgresql-b8fab2411dbb08d918d5998ee78325d2a0549c7f.tar.gz postgresql-b8fab2411dbb08d918d5998ee78325d2a0549c7f.zip |
Add pg_typeof() function.
Brendan Jurd
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index b9efbe88b33..c594e5f2e61 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.324 2008/10/13 16:25:20 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.325 2008/11/03 17:51:13 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -404,6 +404,7 @@ extern Datum pg_tablespace_databases(PG_FUNCTION_ARGS); extern Datum pg_rotate_logfile(PG_FUNCTION_ARGS); extern Datum pg_sleep(PG_FUNCTION_ARGS); extern Datum pg_get_keywords(PG_FUNCTION_ARGS); +extern Datum pg_typeof(PG_FUNCTION_ARGS); /* oid.c */ extern Datum oidin(PG_FUNCTION_ARGS); |