diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-29 22:14:11 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-07-29 22:14:11 +0000 |
commit | ea4686e3e1f00910a19e18dd59f5c518345bb431 (patch) | |
tree | 00359cabd37ad22e8228a5cc47a8600f45b74896 /src/include/utils/builtins.h | |
parent | b9459c6adbf08abae7bbddb5c497476814823b7d (diff) |
Implement CREATE/DROP OPERATOR CLASS. Work still remains: need more
documentation (xindex.sgml should be rewritten), need to teach pg_dump
about it, need to update contrib modules that currently build pg_opclass
entries by hand. Original patch by Bill Studenmund, grammar adjustments
and general update for 7.3 by Tom Lane.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 02a537ca4ee..3abcc69dcd5 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -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.187 2002/07/20 05:49:28 momjian Exp $ + * $Id: builtins.h,v 1.188 2002/07/29 22:14:11 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -343,6 +343,8 @@ 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); +extern char *format_procedure(Oid procedure_oid); +extern char *format_operator(Oid operator_oid); /* ruleutils.c */ extern Datum pg_get_ruledef(PG_FUNCTION_ARGS); |