1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-18 02:02:55 +03:00

Fix CREATE OPERATOR ... LANGUAGE 'internal', which I broke while

making prosrc instead of proname be the link to the actual internal function.
This commit is contained in:
Tom Lane
1999-04-09 22:35:43 +00:00
parent 7eb16b7812
commit 098e043849
4 changed files with 45 additions and 39 deletions

View File

@@ -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 */