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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user