diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-09 03:26:28 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-02-09 03:26:28 +0000 |
commit | dfbd5d653250f12e19bec4550cc617eb0e022250 (patch) | |
tree | 9856cffdfc8aaf47f1599a424d1953e1f7381108 /src/include/parser | |
parent | 467f43d2fae9ac58c3d96e56eb7c8dde25e4ab67 (diff) |
plpgsql's private copy of xlateSqlType was out of sync. Again. This
is clearly not maintainable, so dike it out in favor of calling the real
version in the backend's gram.y.
Diffstat (limited to 'src/include/parser')
-rw-r--r-- | src/include/parser/gramparse.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h index bd9a4574183..88c00ce9f37 100644 --- a/src/include/parser/gramparse.h +++ b/src/include/parser/gramparse.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: gramparse.h,v 1.14 2001/01/24 19:43:27 momjian Exp $ + * $Id: gramparse.h,v 1.15 2001/02/09 03:26:27 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -27,5 +27,7 @@ extern void yyerror(const char *message); extern void parser_init(Oid *typev, int nargs); extern Oid param_type(int t); extern int yyparse(void); +extern char *xlateSqlFunc(char *name); +extern char *xlateSqlType(char *name); #endif /* GRAMPARSE_H */ |