diff options
author | Amit Kapila <akapila@postgresql.org> | 2021-10-26 08:19:33 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2021-10-26 08:19:33 +0530 |
commit | a6a0ae127e76da58e0396cd0f21a97066da2115b (patch) | |
tree | 7cab65fd6fceb2f336b897907d895d22441ee244 /src/include/utils/wait_event.h | |
parent | 181361a0c2fec635de10e101f683da9bddbb8178 (diff) |
Revert "Remove unused wait events."
This reverts commit 671eb8f34404d24c8f16ae40e94becb38afd93bb. The removed
wait events are used by some extensions and removal of these would force a
recompile of those extensions. We don't want that for released branches.
Discussion: https://postgr.es/m/E1mdOBY-0005j2-QL@gemulon.postgresql.org
Diffstat (limited to 'src/include/utils/wait_event.h')
-rw-r--r-- | src/include/utils/wait_event.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/utils/wait_event.h b/src/include/utils/wait_event.h index 8661ab51a3e..6c6ec2e7118 100644 --- a/src/include/utils/wait_event.h +++ b/src/include/utils/wait_event.h @@ -220,7 +220,11 @@ typedef enum WAIT_EVENT_WAL_READ, WAIT_EVENT_WAL_SYNC, WAIT_EVENT_WAL_SYNC_METHOD_ASSIGN, - WAIT_EVENT_WAL_WRITE + WAIT_EVENT_WAL_WRITE, + WAIT_EVENT_LOGICAL_CHANGES_READ, + WAIT_EVENT_LOGICAL_CHANGES_WRITE, + WAIT_EVENT_LOGICAL_SUBXACT_READ, + WAIT_EVENT_LOGICAL_SUBXACT_WRITE } WaitEventIO; |