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

> 2. This patch includes the same Table Function API fixes that I

>    submitted on July 9:
>
>    http://archives.postgresql.org/pgsql-patches/2002-07/msg00056.php
>
>    Please disregard that one *if* this one is applied. If this one is
>    rejected please go ahead with the July 9th patch.

The July 9th Table Function API patch mentioned above is now in CVS, so
here is an updated version of the guc patch which should apply cleanly
against CVS tip.

Joe Conway
This commit is contained in:
Bruce Momjian
2002-07-20 05:49:28 +00:00
parent b6d2faaf24
commit 1ce03603cc
7 changed files with 302 additions and 115 deletions

View File

@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: builtins.h,v 1.186 2002/06/20 20:29:52 momjian Exp $
* $Id: builtins.h,v 1.187 2002/07/20 05:49:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -633,4 +633,8 @@ extern int32 type_maximum_size(Oid type_oid, int32 typemod);
extern Datum quote_ident(PG_FUNCTION_ARGS);
extern Datum quote_literal(PG_FUNCTION_ARGS);
/* guc.c */
extern Datum show_config_by_name(PG_FUNCTION_ARGS);
extern Datum set_config_by_name(PG_FUNCTION_ARGS);
#endif /* BUILTINS_H */