diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-07-03 20:58:47 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-07-03 20:58:47 +0000 |
commit | c63147d6f0e86d96ffb315147f36af613a35c2ce (patch) | |
tree | ab767c9fa14153d7fafd45d7fa1350d50265ab89 /src/include/utils/builtins.h | |
parent | e3d9dceef62e072cf9a433ae6c74a1c5a10d94d3 (diff) | |
download | postgresql-c63147d6f0e86d96ffb315147f36af613a35c2ce.tar.gz postgresql-c63147d6f0e86d96ffb315147f36af613a35c2ce.zip |
Add a function pg_get_keywords() to let clients find out the set of keywords
known to the SQL parser. Dave Page
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 c34ee7aa904..2abbe667891 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.317 2008/06/17 19:10:56 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.318 2008/07/03 20:58:47 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -411,6 +411,7 @@ extern Datum pg_reload_conf(PG_FUNCTION_ARGS); 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); /* oid.c */ extern Datum oidin(PG_FUNCTION_ARGS); |