diff options
| author | Tom Lane | 1999-04-09 22:35:43 +0000 |
|---|---|---|
| committer | Tom Lane | 1999-04-09 22:35:43 +0000 |
| commit | 098e0438496e558902e3b4407090032d6b2d9221 (patch) | |
| tree | fa0172a3a933ab7b2331833aed57ecc9a3a0b823 /src/include | |
| parent | 7eb16b78123bc229e906bc8fe6526bd321850984 (diff) | |
Fix CREATE OPERATOR ... LANGUAGE 'internal', which I broke while
making prosrc instead of proname be the link to the actual internal function.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/utils/fmgrtab.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/fmgrtab.h b/src/include/utils/fmgrtab.h index edee95aa8eb..96f8e1293a2 100644 --- a/src/include/utils/fmgrtab.h +++ b/src/include/utils/fmgrtab.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: fmgrtab.h,v 1.10 1999/03/29 01:30:41 tgl Exp $ + * $Id: fmgrtab.h,v 1.11 1999/04/09 22:35:43 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -19,11 +19,11 @@ typedef struct Oid proid; int nargs; func_ptr func; - int dummy; /* pad struct to 4 words for fast indexing */ + char *funcName; } FmgrCall; extern FmgrCall *fmgr_isbuiltin(Oid id); - +extern func_ptr fmgr_lookupByName(char *name); extern void load_file(char *filename); #endif /* FMGRTAB_H */ |
