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

📄 pquery.h

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 H
字号:
/*------------------------------------------------------------------------- * * pquery.h *	  prototypes for pquery.c. * * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/tcop/pquery.h,v 1.36 2005/10/15 02:49:46 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -