blob: ce332134fb3f432cf398fc3601cde1ea04964896 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-------------------------------------------------------------------------
*
* wait.h
* prototypes for commands/wait.c
*
* Portions Copyright (c) 2025, PostgreSQL Global Development Group
*
* src/include/commands/wait.h
*
*-------------------------------------------------------------------------
*/
#ifndef WAIT_H
#define WAIT_H
#include "nodes/parsenodes.h"
#include "parser/parse_node.h"
#include "tcop/dest.h"
extern void ExecWaitStmt(ParseState *pstate, WaitStmt *stmt, DestReceiver *dest);
extern TupleDesc WaitStmtResultDesc(WaitStmt *stmt);
#endif /* WAIT_H */
|