pquery.h
来自「PostgreSQL7.4.6 for Linux」· C头文件 代码 · 共 43 行
H
43 行
/*------------------------------------------------------------------------- * * pquery.h * prototypes for pquery.c. * * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $Id: pquery.h,v 1.29 2003/08/04 02:40:15 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef PQUERY_H#define PQUERY_H#include "utils/portal.h"extern void ProcessQuery(Query *parsetree, Plan *plan, ParamListInfo params, DestReceiver *dest, char *completionTag);extern PortalStrategy ChoosePortalStrategy(List *parseTrees);extern void PortalStart(Portal portal, ParamListInfo params);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 + -
显示快捷键?