aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/builtins.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-06-20 17:19:08 +0000
committerBruce Momjian <bruce@momjian.us>2002-06-20 17:19:08 +0000
commitba790a5608ead9db7e08f700eb869dbefd3358a4 (patch)
tree31f3f8b9eab61e30764fa8f0aa8a2b56b24f69c3 /src/include/utils/builtins.h
parentbffc4b6da12b8c52e14463f4c709bb4f1c57562f (diff)
downloadpostgresql-ba790a5608ead9db7e08f700eb869dbefd3358a4.tar.gz
postgresql-ba790a5608ead9db7e08f700eb869dbefd3358a4.zip
Here is a patch for Composite and Set returning function support. I made
two small changes to the API since last patch, which hopefully completes the decoupling of composite function support from SRF specific support. Joe Conway
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r--src/include/utils/builtins.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h
index 28ab44ce68b..898f3b6047d 100644
--- a/src/include/utils/builtins.h
+++ b/src/include/utils/builtins.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: builtins.h,v 1.184 2002/06/13 03:40:49 tgl Exp $
+ * $Id: builtins.h,v 1.185 2002/06/20 17:19:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -342,6 +342,7 @@ extern Datum regclassin(PG_FUNCTION_ARGS);
extern Datum regclassout(PG_FUNCTION_ARGS);
extern Datum regtypein(PG_FUNCTION_ARGS);
extern Datum regtypeout(PG_FUNCTION_ARGS);
+extern List *stringToQualifiedNameList(const char *string, const char *caller);
/* ruleutils.c */
extern Datum pg_get_ruledef(PG_FUNCTION_ARGS);