diff options
Diffstat (limited to 'src/include/executor/execAsync.h')
| -rw-r--r-- | src/include/executor/execAsync.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/include/executor/execAsync.h b/src/include/executor/execAsync.h new file mode 100644 index 0000000000..38b37a1d2a --- /dev/null +++ b/src/include/executor/execAsync.h @@ -0,0 +1,23 @@ +/*-------------------------------------------------------------------- + * execAsync.h + * Support functions for asynchronous query execution + * + * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * IDENTIFICATION + * src/include/executor/execAsync.h + *-------------------------------------------------------------------- + */ + +#ifndef EXECASYNC_H +#define EXECASYNC_H + +#include "nodes/execnodes.h" + +extern void ExecAsyncWaitForNode(PlanState *planstate); +extern void ExecAsyncNeedsWait(PlanState *planstate, int nevents, + bool reinit); +extern void ExecAsyncDoesNotNeedWait(PlanState *planstate); + +#endif /* EXECASYNC_H */ |
