nodenestloop.h
来自「关系型数据库 Postgresql 6.5.2」· C头文件 代码 · 共 28 行
H
28 行
/*------------------------------------------------------------------------- * * nodeNestloop.h * * * * Copyright (c) 1994, Regents of the University of California * * $Id: nodeNestloop.h,v 1.10 1999/05/25 16:13:56 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef NODENESTLOOP_H#define NODENESTLOOP_H#include "executor/tuptable.h"#include "nodes/execnodes.h"#include "nodes/plannodes.h"extern TupleTableSlot *ExecNestLoop(NestLoop *node, Plan *parent);extern bool ExecInitNestLoop(NestLoop *node, EState *estate, Plan *parent);extern int ExecCountSlotsNestLoop(NestLoop *node);extern void ExecEndNestLoop(NestLoop *node);extern void ExecReScanNestLoop(NestLoop *node, ExprContext *exprCtxt, Plan *parent);#endif /* NODENESTLOOP_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?