⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefuncs.h

📁 关系型数据库 Postgresql 6.5.2
💻 H
字号:
/*------------------------------------------------------------------------- * * makefuncs.h *	  prototypes for the creator functions (for primitive nodes) * * * Copyright (c) 1994, Regents of the University of California * * $Id: makefuncs.h,v 1.18 1999/05/25 16:14:08 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef MAKEFUNC_H#define MAKEFUNC_H#include <nodes/primnodes.h>#include <nodes/parsenodes.h>#include <utils/fcache.h>extern Oper *makeOper(Oid opno,		 Oid opid,		 Oid opresulttype,		 int opsize,		 FunctionCachePtr op_fcache);extern Var *makeVar(Index varno,		AttrNumber varattno,		Oid vartype,		int32 vartypmod,		Index varlevelsup,		Index varnoold,		AttrNumber varoattno);extern TargetEntry *makeTargetEntry(Resdom *resdom, Node *expr);extern Resdom *makeResdom(AttrNumber resno,		   Oid restype,		   int32 restypmod,		   char *resname,		   Index reskey,		   Oid reskeyop,		   bool resjunk);extern Const *makeConst(Oid consttype,		  int constlen,		  Datum constvalue,		  bool constisnull,		  bool constbyval,		  bool constisset,		  bool constiscast);#endif	 /* MAKEFUNC_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -