pquery.h

来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· C头文件 代码 · 共 43 行

H
43
字号
/*------------------------------------------------------------------------- * * pquery.h *	  prototypes for pquery.c. * * * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/tcop/pquery.h,v 1.39 2006/09/03 03:19:45 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef PQUERY_H#define PQUERY_H#include "utils/portal.h"extern DLLIMPORT Portal ActivePortal;extern PortalStrategy ChoosePortalStrategy(List *parseTrees);extern List *FetchPortalTargetList(Portal portal);extern void PortalStart(Portal portal, ParamListInfo params,			Snapshot snapshot);extern void PortalSetResultFormat(Portal portal, int nFormats,					  int16 *formats);extern bool PortalRun(Portal portal, long count,		  DestReceiver *dest, DestReceiver *altdest,		  char *completionTag);extern long PortalRunFetch(Portal portal,			   FetchDirection fdirection,			   long count,			   DestReceiver *dest);#endif   /* PQUERY_H */

⌨️ 快捷键说明

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