aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/fmgrtab.h
blob: edee95aa8ebcd053cfbd91b72e5be09077e56fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*-------------------------------------------------------------------------
 *
 * fmgrtab.h
 *
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * $Id: fmgrtab.h,v 1.10 1999/03/29 01:30:41 tgl Exp $
 *
 *-------------------------------------------------------------------------
 */
#ifndef FMGRTAB_H
#define FMGRTAB_H


typedef struct
{
	Oid			proid;
	int			nargs;
	func_ptr	func;
	int			dummy;			/* pad struct to 4 words for fast indexing */
} FmgrCall;

extern FmgrCall *fmgr_isbuiltin(Oid id);

extern void load_file(char *filename);

#endif	 /* FMGRTAB_H */