📄 nodehashjoin.h
字号:
/*------------------------------------------------------------------------- * * nodeHashjoin.h * prototypes for nodeHashjoin.c * * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/executor/nodeHashjoin.h,v 1.30 2005/10/15 02:49:44 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef NODEHASHJOIN_H#define NODEHASHJOIN_H#include "nodes/execnodes.h"#include "storage/buffile.h"extern int ExecCountSlotsHashJoin(HashJoin *node);extern HashJoinState *ExecInitHashJoin(HashJoin *node, EState *estate);extern TupleTableSlot *ExecHashJoin(HashJoinState *node);extern void ExecEndHashJoin(HashJoinState *node);extern void ExecReScanHashJoin(HashJoinState *node, ExprContext *exprCtxt);extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, uint32 hashvalue, BufFile **fileptr);#endif /* NODEHASHJOIN_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -