fmgrtab.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * fmgrtab.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: fmgrtab.h,v 1.11 1999/04/09 22:35:43 tgl Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef FMGRTAB_H
  14. #define FMGRTAB_H
  15. typedef struct
  16. {
  17. Oid proid;
  18. int nargs;
  19. func_ptr func;
  20. char    *funcName;
  21. } FmgrCall;
  22. extern FmgrCall *fmgr_isbuiltin(Oid id);
  23. extern func_ptr fmgr_lookupByName(char *name);
  24. extern void load_file(char *filename);
  25. #endif  /* FMGRTAB_H */