/
balmaster
/
postgres
Обзор
Документация
Войти
/
balmaster
/
postgres
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/commands/wait.h
23 строки
620 B
Alexander Korotkov
Explicitly forbid non-top-level WAIT FOR execution
13 апр 2026, 14:04
13 апр 2026, 14:04
a8b61c2
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * wait.h * prototypes for commands/wait.c * * Portions Copyright (c) 2025-2026, 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, bool isTopLevel, DestReceiver *dest); extern TupleDesc WaitStmtResultDesc(WaitStmt *stmt); #endif /* WAIT_H */