Dashboard
PHP:
8.1.33
OS:
Linux
User:
lawtemple
/
/
usr
/
pgsql-11
/
include
/
server
/
executor
📤 Upload
📝 New File
📁 New Folder
Close
Editing: nodeTableFuncscan.h
/*------------------------------------------------------------------------- * * nodeTableFuncscan.h * * * * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/executor/nodeTableFuncscan.h * *------------------------------------------------------------------------- */ #ifndef NODETABLEFUNCSCAN_H #define NODETABLEFUNCSCAN_H #include "nodes/execnodes.h" extern TableFuncScanState *ExecInitTableFuncScan(TableFuncScan *node, EState *estate, int eflags); extern void ExecEndTableFuncScan(TableFuncScanState *node); extern void ExecReScanTableFuncScan(TableFuncScanState *node); #endif /* NODETABLEFUNCSCAN_H */
Save
Cancel