diff options
Diffstat (limited to 'src/include/parser/parse_func.h')
-rw-r--r-- | src/include/parser/parse_func.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index 9ee17203708..b191944ee2f 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.22 2000/01/26 05:58:27 momjian Exp $ + * $Id: parse_func.h,v 1.23 2000/03/16 06:35:06 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -47,6 +47,8 @@ extern Node *ParseFuncOrColumn(ParseState *pstate, extern List *setup_base_tlist(Oid typeid); +extern bool typeInheritsFrom(Oid subclassTypeId, Oid superclassTypeId); + extern void func_error(char *caller, char *funcname, int nargs, Oid *argtypes, char *msg); |