📄 nodeappend.h
字号:
/*------------------------------------------------------------------------- * * nodeAppend.h * * * * Copyright (c) 1994, Regents of the University of California * * $Id: nodeAppend.h,v 1.10 1999/02/13 23:21:25 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef NODEAPPEND_H#define NODEAPPEND_H#include "executor/tuptable.h"#include "nodes/execnodes.h"#include "nodes/plannodes.h"extern bool ExecInitAppend(Append *node, EState *estate, Plan *parent);extern int ExecCountSlotsAppend(Append *node);extern TupleTableSlot *ExecProcAppend(Append *node);extern void ExecEndAppend(Append *node);extern void ExecReScanAppend(Append *node, ExprContext *exprCtxt, Plan *parent);#endif /* NODEAPPEND_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -